This commit is contained in:
Zengtudor 2024-08-11 17:08:58 +08:00
parent bdbfec40f9
commit 8f71165206
3 changed files with 14 additions and 1 deletions

8
src/CliFunc/project.ts Normal file
View File

@ -0,0 +1,8 @@
import printDebug from "../Tools/DebugPrint"
const project = (name:string,callback:Function) =>{
printDebug("adding project :"+name)
callback()
}
export default project

1
src/CliFunc/tools.ts Normal file
View File

@ -0,0 +1 @@
export {default as project} from "./project"

View File

@ -1 +1,5 @@
console.log("hello world") import project from "../../src/CliFunc/project";
project("hello",()=>{
})