mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-15 11:33:50 +00:00
52 lines
802 B
Go
52 lines
802 B
Go
package livenote
|
|
|
|
import "time"
|
|
|
|
type Option interface{}
|
|
|
|
type OptionCompare struct {
|
|
Value bool
|
|
}
|
|
|
|
func CompareObject(value bool) *OptionCompare {
|
|
return &OptionCompare{Value: value}
|
|
}
|
|
|
|
type OptionOneTimeMention struct {
|
|
Users []string
|
|
}
|
|
|
|
func OneTimeMention(users ...string) *OptionOneTimeMention {
|
|
return &OptionOneTimeMention{Users: users}
|
|
}
|
|
|
|
type OptionComment struct {
|
|
Text string
|
|
Users []string
|
|
}
|
|
|
|
func Comment(text string, users ...string) *OptionComment {
|
|
return &OptionComment{
|
|
Text: text,
|
|
Users: users,
|
|
}
|
|
}
|
|
|
|
type OptionTimeToLive struct {
|
|
Duration time.Duration
|
|
}
|
|
|
|
func TimeToLive(du time.Duration) *OptionTimeToLive {
|
|
return &OptionTimeToLive{Duration: du}
|
|
}
|
|
|
|
type OptionPin struct {
|
|
Value bool
|
|
}
|
|
|
|
func Pin(value bool) *OptionPin {
|
|
return &OptionPin{
|
|
Value: value,
|
|
}
|
|
}
|