Initial commit

This commit is contained in:
2026-05-13 19:42:49 -07:00
commit cfa01bd4ef
54 changed files with 11718 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package scheduler
import "encoding/json"
func jsonUnmarshal(b []byte, dst any) error {
return json.Unmarshal(b, dst)
}