mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 18:48:33 -04:00
refactor: scaffolded odin project with CLI parser, version command, Go fallback
This commit is contained in:
39
stubs.odin
Normal file
39
stubs.odin
Normal file
@@ -0,0 +1,39 @@
|
||||
package main
|
||||
|
||||
import "core:fmt"
|
||||
|
||||
cmd_init :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: init")
|
||||
}
|
||||
|
||||
cmd_list :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: list")
|
||||
}
|
||||
|
||||
cmd_scan :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: scan")
|
||||
}
|
||||
|
||||
cmd_sync :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: sync")
|
||||
}
|
||||
|
||||
cmd_backup :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: backup")
|
||||
}
|
||||
|
||||
cmd_restore :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: restore")
|
||||
}
|
||||
|
||||
cmd_remove :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: remove")
|
||||
}
|
||||
|
||||
cmd_check :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: check")
|
||||
}
|
||||
|
||||
cmd_edit_config :: proc(cmd: ^Command) {
|
||||
fmt.println("TODO: edit-config")
|
||||
}
|
||||
Reference in New Issue
Block a user