mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-15 11:33:50 +00:00
13 lines
135 B
Go
13 lines
135 B
Go
|
package livenote
|
||
|
|
||
|
type Option interface{}
|
||
|
|
||
|
type Mention struct {
|
||
|
User string
|
||
|
}
|
||
|
|
||
|
type Comment struct {
|
||
|
Text string
|
||
|
Users []string
|
||
|
}
|