14 lines
220 B
Go
14 lines
220 B
Go
|
package null
|
||
|
|
||
|
import "gitea.neur0tx.site/Neur0toxine/vegapokerbot/internal/integration/iface"
|
||
|
|
||
|
type Null struct{}
|
||
|
|
||
|
func New() iface.Integration {
|
||
|
return &Null{}
|
||
|
}
|
||
|
|
||
|
func (n *Null) GetTaskInfoText() string {
|
||
|
return ""
|
||
|
}
|