mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 10:38:33 -04:00
12 lines
160 B
Odin
12 lines
160 B
Odin
package main
|
|
|
|
import "core:fmt"
|
|
|
|
cmd_init :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: init")
|
|
}
|
|
|
|
cmd_sync :: proc(cmd: ^Command) {
|
|
fmt.println("TODO: sync")
|
|
}
|