11 lines
231 B
TypeScript

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