diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 22:35:17 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 22:38:37 -0500 |
| commit | 6a1541c132277af7c905a83ccd9d825fc88c1587 (patch) | |
| tree | f68e321e76f1205b6730c94b19e9deb9a3f85e45 /patchset.Send.go | |
| parent | 6db458b2dfbc45b63db0d5a6b37515df33599e3a (diff) | |
switch to namespace fix send patches
Diffstat (limited to 'patchset.Send.go')
| -rw-r--r-- | patchset.Send.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/patchset.Send.go b/patchset.Send.go index 3677a4f..44d9a26 100644 --- a/patchset.Send.go +++ b/patchset.Send.go @@ -11,6 +11,14 @@ import ( "go.wit.com/log" ) +// makes a new patches protobuf. These are all the patches on your machine. +func NewPatches() *Patches { + x := new(Patches) + x.Uuid = "2679065e-c81d-4a00-aca4-03c158a834fb" + x.Version = "v2.0.0 go.wit.com/lib/protobuf/forgepb" + return x +} + func (f *Forge) SendPatchSet(pset *Patchset) error { var err error data, err := pset.Marshal() |
