computer-host/internal/daemon/daemon.go

12 lines
174 B
Go

package daemon
import (
"github.com/getcompanion-ai/computer-host/internal/store"
)
type Runtime interface{}
type Daemon struct {
Store store.Store
Runtime Runtime
}