7 lines
115 B
Go
7 lines
115 B
Go
|
package interfaces
|
||
|
|
||
|
type IsThumbedUpFillable interface {
|
||
|
GetMomentId() int64
|
||
|
SetIsThumbedUp(is_followed int64)
|
||
|
}
|