15 lines
193 B
Go
15 lines
193 B
Go
package client
|
|
|
|
import (
|
|
"git.sr.ht/~cco/go-scopes/config"
|
|
"git.sr.ht/~cco/go-scopes/lib"
|
|
)
|
|
|
|
type Cfg struct {
|
|
*config.BaseCfg
|
|
Url string
|
|
}
|
|
|
|
func Send(act lib.Action) bool {
|
|
return true
|
|
}
|