proto.go
1package proto
2
3// Instance represents a running app.App instance with its associated resources
4// and state.
5type Instance struct {
6 ID string `json:"id"`
7 Path string `json:"path"`
8 YOLO bool `json:"yolo"`
9}
10
11// Error represents an error response.
12type Error struct {
13 Message string `json:"message"`
14}