mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
19 lines
199 B
Go
19 lines
199 B
Go
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 {
|
|
|
|
}
|