Something went wrong. Try again.
A work-in-progress chat bot for Streamplace with chat overlay functionality
Something went wrong. Try again.
streamplace-bot dev.ts
245 B · 11 lines
TypeScript
at main
123456789101112#!/usr/bin/env -S deno run -A --watch=static/,routes/
import { Builder } from "fresh/dev";
const builder = new Builder();
if (Deno.args.includes("build")) { await builder.build();} else { await builder.listen(() => import("./main.ts"));}