The module was declared as `module game`, which is not a resolvable import path: nothing outside this repository could depend on the konstructor engine, whatever it was published as. It is now git.teletypegames.org/engines/gorpg, matching where the repo lives. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
16 lines
356 B
Go
16 lines
356 B
Go
package main
|
|
|
|
import (
|
|
"git.teletypegames.org/engines/gorpg/src/domain"
|
|
"git.teletypegames.org/engines/gorpg/src/konstructor"
|
|
"git.teletypegames.org/engines/gorpg/src/konstructor/engines/easy_ebitengine"
|
|
)
|
|
|
|
func main() {
|
|
k := konstructor.Konstructor{
|
|
EngineWrapper: &easy_ebitengine.EngineWrapper{},
|
|
Domain: &domain.Domain{},
|
|
}
|
|
k.Init()
|
|
}
|