8 lines
85 B
Go
8 lines
85 B
Go
|
package test
|
||
|
|
||
|
type Build struct{}
|
||
|
|
||
|
func (b Build) IsRelease() bool {
|
||
|
return false
|
||
|
}
|