aboutsummaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
authorPriyansh <[email protected]>2025-08-27 15:35:50 +0530
committerPriyansh <[email protected]>2025-08-27 15:35:50 +0530
commit08084bf28832364bb4f3f4f1bfcb1e1ef0bbcbe8 (patch)
treeba41300ba2e12d9302569f5603f8c42f64a7a96f /types
parentd1b41da312e06dec0c4c175a39068f03344eda4c (diff)
downloadnectar-08084bf28832364bb4f3f4f1bfcb1e1ef0bbcbe8.tar.xz
nectar-08084bf28832364bb4f3f4f1bfcb1e1ef0bbcbe8.zip
Move Globals to separate types package
Diffstat (limited to 'types')
-rw-r--r--types/gobals.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/types/gobals.go b/types/gobals.go
new file mode 100644
index 0000000..550f964
--- /dev/null
+++ b/types/gobals.go
@@ -0,0 +1,8 @@
+package types
+
+type Globals struct {
+ Width int
+ Height int
+ BuildDate string
+ Version string
+}