Imported icarus-models package and added main file

This commit is contained in:
2025-03-01 15:32:42 -05:00
parent 92fee89848
commit e30c24e2db
3 changed files with 16 additions and 0 deletions

5
go.mod Normal file
View File

@@ -0,0 +1,5 @@
module gitlab.com/kdeng00/songparser
go 1.23.5
require gitlab.com/kdeng00/icarus-models v0.0.0-20250301195457-d4129841771a // indirect

2
go.sum Normal file
View File

@@ -0,0 +1,2 @@
gitlab.com/kdeng00/icarus-models v0.0.0-20250301195457-d4129841771a h1:q4HT8tKGvic/TaPHS9KVmIUcIgFK3seZOXBgq0DJ2GI=
gitlab.com/kdeng00/icarus-models v0.0.0-20250301195457-d4129841771a/go.mod h1:BlZM3l3wEeR14Sv+YLTRFGF+JsfmL/VXM5vULmL9R5U=

9
main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello")
}