7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
import { Setup, SetupResult } from "../lib/setup.ts"
|
|
|
|
export class RcSetup extends Setup {
|
|
async install(): Promise<SetupResult> {
|
|
return "Ok";
|
|
}
|
|
}
|