502e1b5264
Signed-off-by: Alejandro Mery <amery@jpi.io>
12 lines
144 B
Go
12 lines
144 B
Go
package zones
|
|
|
|
import "io"
|
|
|
|
type Zones struct{}
|
|
|
|
func (*Zones) WriteEnv(io.Writer) error {
|
|
return nil
|
|
}
|
|
|
|
func New(mdir string) (*Zones, error)
|