diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..73f69e09 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/golang-united-school-homework-1.iml b/.idea/golang-united-school-homework-1.iml new file mode 100644 index 00000000..5e764c4f --- /dev/null +++ b/.idea/golang-united-school-homework-1.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..8778a1d0 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..d19fcead --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/majustman/golang-united-school-homework-1 + +go 1.17 + +require github.com/kyokomi/emoji v2.2.4+incompatible // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..b4d9b182 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/kyokomi/emoji v2.2.4+incompatible h1:np0woGKwx9LiHAQmwZx79Oc0rHpNw3o+3evou4BEPv4= +github.com/kyokomi/emoji v2.2.4+incompatible/go.mod h1:mZ6aGCD7yk8j6QY6KICwnZ2pxoszVseX1DNoGtU2tBA= diff --git a/solution.go b/solution.go index 0fc85416..4f761c5e 100644 --- a/solution.go +++ b/solution.go @@ -1,5 +1,7 @@ package solution +import "github.com/kyokomi/emoji" + func GetMessage() string { - return "" + return emoji.Sprint("Hello 🗺️!") }