File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 22 cargo build
33
44example :
5- DEV=true deno run \
5+ PLUGIN_URL=target/debug/ deno run \
66 -A \
77 --unstable \
88 --no-check \
1616lint :
1717 cargo clippy
1818 deno lint --ignore=target/
19-
20-
Original file line number Diff line number Diff line change 1- export { CachePolicy , prepare , download } from "https://deno.land/x/plug@0.5.1/plug.ts" ;
1+ export {
2+ CachePolicy ,
3+ download ,
4+ prepare ,
5+ } from "https://deno.land/x/plug@0.5.1/plug.ts" ;
Original file line number Diff line number Diff line change 11import { serve } from "https://deno.land/std@0.120.0/http/mod.ts" ;
22import { Webview } from "../mod.ts" ;
33
4- const server = serve ( ( ) =>
4+ const _server = serve ( ( ) =>
55 new Response ( "<h1>Hello World</h1>" , {
66 headers : new Headers ( {
77 "content-type" : "text/html" ,
You can’t perform that action at this time.
0 commit comments