diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 01:10:10 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 01:10:10 -0500 |
| commit | abd48f2bbf43a8ee772b7da09edb411f59b61064 (patch) | |
| tree | 7de603e7bb6dd21d285116bee755705570cf19b6 | |
| parent | ec88fb8767771c71885ed3a9eb041a42cdd34119 (diff) | |
init once
| -rw-r--r-- | structs.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -8,8 +8,7 @@ import ( // maybe an interface someday? type Forge struct { - // one-time initialized data - once sync.Once + once sync.Once // one-time initialized data Config *ForgeConfigs // config repos for readonly, private, etc Repos *gitpb.Repos // the repo protobufs Patchsets *Sets // patches that are in progress |
