mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 03:00:42 +00:00
12 lines
174 B
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
|
|
}
|