From c6c8c22b63aa31c6d88f289e34c2fedac67a4032 Mon Sep 17 00:00:00 2001 From: Christopher Young Date: Sat, 26 Mar 2016 17:23:08 -0400 Subject: [PATCH] Stratux plugin beginning. --- main/plugin.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 main/plugin.go diff --git a/main/plugin.go b/main/plugin.go new file mode 100644 index 00000000..21d1d224 --- /dev/null +++ b/main/plugin.go @@ -0,0 +1,13 @@ +package StratuxPlugin + +import ( + "time" +) + +type StratuxPlugin struct { + InitFunc func() bool + ShutdownFunc func() bool + Name string + Clock time.Time + Input chan string +}