1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
This commit is contained in:
Chris Cummer 2018-05-17 14:01:56 -07:00
parent a6dce5513d
commit c3f14025ba

18
cmdrunner/widget.go Normal file
View File

@ -0,0 +1,18 @@
package cmdrunner
import (
"fmt"
)
// Config is a pointer to the global config object
var Config *config.Config
type Widget struct {
wtf.TextWidget
cmd string
}
func NewWidget() *Widget {
}