Skip to content

Commit

Permalink
vint init init
Browse files Browse the repository at this point in the history
  • Loading branch information
tacheraSasi committed Dec 14, 2024
1 parent 7f8e201 commit 57ab291
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ func main() {
repl.Docs()
case "get":
toolkit.Get(os.Args[2])
case "init":
toolkit.Init()
case ".":
// Runs default main.vint file
run("main.vint")
Expand Down
6 changes: 5 additions & 1 deletion toolkit/toolkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ func Get(pkg string){
switch pkg {
case "vintpm":
fmt.Println("Installing vintpm...")

}
}


func init(){

}

0 comments on commit 57ab291

Please sign in to comment.