mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 18:48:33 -04:00
28 lines
438 B
Odin
28 lines
438 B
Odin
package main
|
|
|
|
import "core:fmt"
|
|
|
|
cmd_init :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: init")
|
|
}
|
|
|
|
cmd_scan :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: scan")
|
|
}
|
|
|
|
cmd_sync :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: sync")
|
|
}
|
|
|
|
cmd_restore :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: restore")
|
|
}
|
|
|
|
cmd_check :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: check")
|
|
}
|
|
|
|
cmd_edit_config :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: edit-config")
|
|
}
|