mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 10:38:33 -04:00
20 lines
290 B
Odin
20 lines
290 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_check :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: check")
|
|
}
|