stratux/main/plugin.go

14 wiersze
187 B
Go
Czysty Zwykły widok Historia

2016-03-26 21:25:32 +00:00
package main
2016-03-26 21:23:08 +00:00
import (
"time"
)
type StratuxPlugin struct {
InitFunc func() bool
ShutdownFunc func() bool
Name string
Clock time.Time
Input chan string
}