initial commit.

master
Bryan 2023-09-08 09:25:39 -06:00
commit c3b483e47d
3 changed files with 27 additions and 0 deletions

9
cdhist.go Normal file
View File

@ -0,0 +1,9 @@
package main
func histAdd() {
return
}
func histList() {
return
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module projects/cdhist-v2
go 1.20

15
main.go Normal file
View File

@ -0,0 +1,15 @@
package main
import (
"os"
)
func main(){
if len(os.Args) > 1 && os.Args[1] == "add" {
histAdd()
return
}
histList()
return
}