Skip to content
Snippets Groups Projects
Commit b89160fc authored by ko_oler's avatar ko_oler
Browse files

sip

parent b83ba98b
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,10 @@ type Content struct {
runners []Runnable
}
const (
DBVersion uint32 = 1
)
func (c *Content) RegisterStart(svc interface{}) {
if r, ok := svc.(Runnable); ok {
c.runners = append(c.runners, r)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment