Files
gorpg/main.go
T
mr.zeroandClaude Opus 5 220e4b7016 Give the module an importable path
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>
2026-08-16 10:36:39 +02:00

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()
}