package api import ( "testing" "git.tilde.town/tildetown/bbj2/server/cmd/config" ) func TestInstanceInfo(t *testing.T) { ts := []struct { name string opts config.Options wantResp *BBJResponse wantErr HTTPError }{} for _, tt := range ts { t.Run(tt.name, func(t *testing.T) { // TODO }) } }