2025-02-01 11:38:22 -06:00
|
|
|
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the GPL 3.0
|
|
|
|
|
2024-12-24 04:47:58 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2025-01-07 17:17:01 -06:00
|
|
|
"go.wit.com/dev/alexflint/arg"
|
2024-12-24 04:47:58 -06:00
|
|
|
"go.wit.com/lib/protobuf/forgepb"
|
2025-02-22 07:17:13 -06:00
|
|
|
"go.wit.com/lib/protobuf/zoopb"
|
2024-12-24 04:47:58 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
var me *autoType
|
|
|
|
|
|
|
|
// this app's variables
|
|
|
|
type autoType struct {
|
2025-02-22 07:17:13 -06:00
|
|
|
argpp *arg.Parser // go-arg preprocessor
|
|
|
|
forge *forgepb.Forge // your customized repo preferences and settings
|
|
|
|
machine *zoopb.Machine // your customized repo preferences and settings
|
2024-12-24 04:47:58 -06:00
|
|
|
}
|