initial commit
This commit is contained in:
commit
6761bad26e
18 changed files with 282 additions and 0 deletions
13
parts/hello-world.ts
Normal file
13
parts/hello-world.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { run } from "../lib/utilities.ts"
|
||||
import { Setup, SetupResult } from "../lib/setup.ts"
|
||||
|
||||
export class HelloWorldSetup extends Setup {
|
||||
constructor() {
|
||||
super({ name: "hello-world" });
|
||||
}
|
||||
|
||||
async install(): Promise<SetupResult> {
|
||||
await run("echo hello yorld");
|
||||
return "Ok"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue