GildedRose-Refactoring-Kata/go/main.go
2023-07-11 20:36:37 +01:00

13 lines
227 B
Go

package main
import (
"github.com/emilybache/gildedrose-refactoring-kata/bootstrap"
"github.com/joho/godotenv"
)
// Application main entry point
func main() {
_ = godotenv.Load()
bootstrap.RootApp.Execute()
}