diff options
| author | Priyansh <[email protected]> | 2025-08-27 15:35:50 +0530 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2025-08-27 15:35:50 +0530 |
| commit | 08084bf28832364bb4f3f4f1bfcb1e1ef0bbcbe8 (patch) | |
| tree | ba41300ba2e12d9302569f5603f8c42f64a7a96f /types | |
| parent | d1b41da312e06dec0c4c175a39068f03344eda4c (diff) | |
| download | nectar-08084bf28832364bb4f3f4f1bfcb1e1ef0bbcbe8.tar.xz nectar-08084bf28832364bb4f3f4f1bfcb1e1ef0bbcbe8.zip | |
Move Globals to separate types package
Diffstat (limited to 'types')
| -rw-r--r-- | types/gobals.go | 8 |
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 +} |
