Skip to content

Commit

Permalink
feat: stash
Browse files Browse the repository at this point in the history
  • Loading branch information
npmstudy committed Oct 31, 2023
1 parent 55f2a69 commit 6007a11
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/core2/fn.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { F } from 'vitest/dist/reporters-5f784f42';

export class Fn {
public name: string;
public init: Array<Function>;
public load: Array<Function>;
// public name: string;
// public init: Array<Function>;
// public load: Array<Function>;

constructor() {
this.name = 'fn';
this.init = [];
this.load = [];
// this.name = 'fn';
// this.init = [];
// this.load = [];
}

async render(ctx, next) {
Expand Down

0 comments on commit 6007a11

Please sign in to comment.