Small application for decode the secret message and get the location received from the other enemy starship!
Using Go and a lot of math :)
- Go v1.17
- Gin Gonic v1.10.1
- Wire v0.6.0
For run the project in localhost you can follow this steps:
- Use
make run
for start the project without update the Wire files - For default, Gin will open the service on
http://localhost:8080
and the Swagger onhttp://localhost:8080/swagger/index.html
Otherwise if you has made changes in the project you can use this commands:
- Use
make generate
from the project root for generate the dependencies with Wire - Use
make swagger
from the project root for generate the Swagger Documentation - Use
make all
(recommended) is the plus betweenmake generate
make swagger
andmake run
- Use
make test
for test theGetLocation
andGetMessage
methods