https://go.dev/doc/modules/layout This also enables us to later import just the db interaction part say to the gemini capsule backend go project.
9 lines
115 B
Go
9 lines
115 B
Go
package main
|
|
|
|
import (
|
|
ui "git.travisshears.com/travisshears/gemlog-cli/internal/ui"
|
|
)
|
|
|
|
func main() {
|
|
ui.Run()
|
|
}
|