19 lines
235 B
Go
Executable File
19 lines
235 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"game/domain"
|
|
"game/presenter"
|
|
)
|
|
|
|
func main() {
|
|
context := domain.CreateContext()
|
|
|
|
domain := domain.Domain{
|
|
Context: context,
|
|
Presenter: presenter.Presenter{
|
|
Context: context,
|
|
},
|
|
}
|
|
domain.Init()
|
|
}
|