Skip to content
This repository has been archived by the owner on Jul 29, 2023. It is now read-only.

YogiLiu/supabase_funtions_utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usage

import {
  App,
  response,
} from "https://deno.land/x/supabase_funtions_utils@v0.1.0/mod.ts";

const app = new App();

app.get(async (req: Request) => {
  return response.text("Hello, world!");
});

app.serve();