Browse Source

Added Start method to Cog interface

Wirecog 6 years ago
parent
commit
1925fd148f
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      cog.go

+ 1
- 0
cog.go View File

@@ -17,6 +17,7 @@ var VDOMEnabled = true
17 17
 
18 18
 type Cog interface {
19 19
 	Render() error
20
+	Start() error
20 21
 }
21 22
 
22 23
 func init() {