mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
13 lines
227 B
Go
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()
|
|
}
|