Go Battleship game

This repository has the intention of studying Go Programming Language and Clean Architecture

Implementation of florinpop - App Ideas - Battleship Game Engine

Take a look at:

Start server

Run server

go run ./cmd/server/main.go

Testing

go test ./... -v

Coverage

go test ./... -coverprofile cover.out
go tool cover -html=cover.out -o cover.html

Generate OpenApi code

go generate ./...