2023-05-04 20:04:06 -06:00

11 lines
230 B
TypeScript

import { CGGService } from 'cgg/Application.ts';
import { Router } from 'oak';
const app = new CGGService({ prefix: '/rules' });
app.route(new Router());
app.start();
console.log('User service running on ' + Deno.args.at(0));