diff --git a/bot/.idea/.gitignore b/bot/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/bot/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/bot/.idea/bot.iml b/bot/.idea/bot.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/bot/.idea/bot.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/bot/.idea/modules.xml b/bot/.idea/modules.xml new file mode 100644 index 0000000..b00b843 --- /dev/null +++ b/bot/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/bot/.idea/vcs.xml b/bot/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/bot/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/bot/go.mod b/bot/go.mod new file mode 100644 index 0000000..2528c8c --- /dev/null +++ b/bot/go.mod @@ -0,0 +1,3 @@ +module bot + +go 1.21 diff --git a/bot/main.go b/bot/main.go new file mode 100644 index 0000000..7905807 --- /dev/null +++ b/bot/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + +}