Boilerplate Deno stuff

This commit is contained in:
Alex Gleason
2023-03-04 19:55:28 -06:00
commit d855c05fac
7 changed files with 56 additions and 0 deletions

6
src/server.ts Normal file
View File

@@ -0,0 +1,6 @@
import 'https://deno.land/std@0.177.0/dotenv/load.ts';
import { serve } from 'https://deno.land/std@0.177.0/http/server.ts';
import app from './app.ts';
serve(app.fetch);