pkg/zones: WIP

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-08-21 17:51:44 +00:00
parent 5cd55456f2
commit 502e1b5264
+11
View File
@@ -0,0 +1,11 @@
package zones
import "io"
type Zones struct{}
func (*Zones) WriteEnv(io.Writer) error {
return nil
}
func New(mdir string) (*Zones, error)