8 lines
82 B
Go
8 lines
82 B
Go
package model
|
|
|
|
type Topic string
|
|
|
|
func (t Topic) Valid() bool {
|
|
return t != ""
|
|
}
|