Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 668 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 668 Bytes

Golang RPG

Project for Advanced Lab Course

Reminders:

  • You need to set up the enviromental variables PATH (Windows)/ $PATH (linux) with the values of GOPATH and GOROOT.
  • You need to run the .sh(ubuntu)/ .bat (windows) script to get the needed dependencies
  • You need to run the govendor script to install the dependencies used in the project
  • When creating structs for JSON objects, start all property names with uppercase letters
type Welcome struct {
  ServerStatus bool `json:"serverStatus"`
}