mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 00:19:30 +08:00
9 lines
247 B
Text
9 lines
247 B
Text
import type { Context, Initializer } from 'worktop';
|
|
|
|
/**
|
|
* Start a Deno server from an `Initializer` function.
|
|
* @example await deno.start(API.run);
|
|
*/
|
|
export function start<
|
|
C extends Context = Context,
|
|
>(run: Initializer<C>): Promise<void>
|