18 lines
242 B
Go
18 lines
242 B
Go
|
package components
|
||
|
|
||
|
import ()
|
||
|
|
||
|
type Componenter interface {
|
||
|
Component(ComponentKey) Component
|
||
|
Components() ComponentStore
|
||
|
}
|
||
|
|
||
|
type (
|
||
|
ComponentStore map[ComponentKey]Component
|
||
|
ComponentKey string
|
||
|
|
||
|
Component interface {
|
||
|
Shutdown()
|
||
|
}
|
||
|
)
|