aboutsummaryrefslogtreecommitdiff
path: root/tools/src/updater/manifest.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools/src/updater/manifest.go')
-rw-r--r--tools/src/updater/manifest.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/src/updater/manifest.go b/tools/src/updater/manifest.go
new file mode 100644
index 0000000..f9d3d86
--- /dev/null
+++ b/tools/src/updater/manifest.go
@@ -0,0 +1,16 @@
+package main
+
+import (
+ "time"
+)
+
+type CommitResponse struct {
+ ID string `json:"id"`
+ Timestamp time.Time `json:"timestamp"`
+}
+
+type BranchResponse struct {
+ Name string `json:"name"`
+ Commit CommitResponse `json:"commit"`
+}
+