Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
perms Feature作成
Browse files Browse the repository at this point in the history
  • Loading branch information
takejohn committed May 3, 2024
1 parent 08654c7 commit 4f4c485
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions packages/perms/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { Feature } from 'core';

class PermsFeature extends Feature {
enabled: boolean = true;

name: string = 'perms';
}

export const feature = new PermsFeature();
12 changes: 12 additions & 0 deletions packages/perms/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "perms",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "GPL-3.0-only"
}

0 comments on commit 4f4c485

Please sign in to comment.