update
This commit is contained in:
parent
bdbfec40f9
commit
8f71165206
8
src/CliFunc/project.ts
Normal file
8
src/CliFunc/project.ts
Normal 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
1
src/CliFunc/tools.ts
Normal file
@ -0,0 +1 @@
|
||||
export {default as project} from "./project"
|
@ -1 +1,5 @@
|
||||
console.log("hello world")
|
||||
import project from "../../src/CliFunc/project";
|
||||
|
||||
project("hello",()=>{
|
||||
|
||||
})
|
Loading…
Reference in New Issue
Block a user