From f8634f715f20c735ffe0635cb083ecf763042fb5 Mon Sep 17 00:00:00 2001 From: cyber-dream Date: Mon, 31 Oct 2022 22:50:13 +0300 Subject: [PATCH] create domains --- domainUtils.go/domainTypes.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 domainUtils.go/domainTypes.go diff --git a/domainUtils.go/domainTypes.go b/domainUtils.go/domainTypes.go new file mode 100644 index 0000000..aca7abe --- /dev/null +++ b/domainUtils.go/domainTypes.go @@ -0,0 +1,10 @@ +package domainutilsgo + +import ( + "../gameUtils" +) + +type Domain struct { + ServerId string + Games []gameUtils.Game +}