moved main package to internal and renamed it

This commit is contained in:
Squishy Bloob 2024-03-25 03:03:53 +00:00
parent 9e24d555a1
commit 9a0b796cb5
6 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.fleet .fleet
.idea .idea
*.exe

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,4 +1,4 @@
package src package goo
import . "git.danitheskunk.com/squishy/blooblib" import . "git.danitheskunk.com/squishy/blooblib"

View File

@ -1,4 +1,4 @@
package src package goo
import ( import (
. "git.danitheskunk.com/squishy/blooblib" . "git.danitheskunk.com/squishy/blooblib"

View File

@ -1,4 +1,4 @@
package src package goo
import . "git.danitheskunk.com/squishy/blooblib" import . "git.danitheskunk.com/squishy/blooblib"

View File

@ -2,9 +2,9 @@ package main
import ( import (
run "git.danitheskunk.com/squishy/blooblib/Run" run "git.danitheskunk.com/squishy/blooblib/Run"
"git.danitheskunk.com/squishy/goo/src" "git.danitheskunk.com/squishy/goo/internal"
) )
func main() { func main() {
run.Run(&src.Game{}) run.Run(&goo.Game{})
} }