blasphem/pkg/component/component.go

16 lines
168 B
Go
Raw Normal View History

2022-12-20 11:34:25 -05:00
package component
import (
"dynatron.me/x/blasphem/pkg/blas"
)
type (
Setup func(blas.Core) (Instance, error)
Instance interface {
Shutdown()
}
Key string
)