├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── DATABASE_INSTRUCTIONS.md ├── Gopkg.lock ├── Gopkg.toml ├── License.md ├── README.md ├── app ├── contexts.go ├── controllers.go ├── hrefs.go ├── media_types.go ├── test │ ├── card_testing.go │ ├── category_testing.go │ ├── faction_testing.go │ ├── group_testing.go │ ├── index_testing.go │ └── rarity_testing.go └── user_types.go ├── card.go ├── category.go ├── config.toml ├── configuration └── config.go ├── dataLayer ├── dal │ ├── dalCard.go │ ├── dalCategory.go │ ├── dalFaction.go │ ├── dalGroup.go │ ├── dalRarity.go │ ├── dalVariation.go │ └── db.go ├── factory │ ├── FactoryCard.go │ ├── FactoryCategory.go │ ├── FactoryFaction.go │ ├── FactoryGroup.go │ ├── FactoryRarity.go │ └── FactoryVariation.go └── models │ ├── card.go │ ├── category.go │ ├── faction.go │ ├── group.go │ ├── rarity.go │ └── variation.go ├── design ├── api_definition.go ├── media_types_definition.go ├── resources_definition.go └── types_definition.go ├── faction.go ├── group.go ├── helpers ├── full_urls.go ├── header.go ├── pageHelper.go └── uuidEncoder.go ├── index.go ├── main.go ├── rarity.go ├── serverService ├── README.md ├── gwentapi.service ├── gwentapi.socket ├── serverCore.go ├── serverStart.go └── serverStart_linux.go └── swagger ├── swagger.json └── swagger.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DATABASE_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/DATABASE_INSTRUCTIONS.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/README.md -------------------------------------------------------------------------------- /app/contexts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/contexts.go -------------------------------------------------------------------------------- /app/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/controllers.go -------------------------------------------------------------------------------- /app/hrefs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/hrefs.go -------------------------------------------------------------------------------- /app/media_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/media_types.go -------------------------------------------------------------------------------- /app/test/card_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/test/card_testing.go -------------------------------------------------------------------------------- /app/test/category_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/test/category_testing.go -------------------------------------------------------------------------------- /app/test/faction_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/test/faction_testing.go -------------------------------------------------------------------------------- /app/test/group_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/test/group_testing.go -------------------------------------------------------------------------------- /app/test/index_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/test/index_testing.go -------------------------------------------------------------------------------- /app/test/rarity_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/test/rarity_testing.go -------------------------------------------------------------------------------- /app/user_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/app/user_types.go -------------------------------------------------------------------------------- /card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/card.go -------------------------------------------------------------------------------- /category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/category.go -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/config.toml -------------------------------------------------------------------------------- /configuration/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/configuration/config.go -------------------------------------------------------------------------------- /dataLayer/dal/dalCard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/dalCard.go -------------------------------------------------------------------------------- /dataLayer/dal/dalCategory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/dalCategory.go -------------------------------------------------------------------------------- /dataLayer/dal/dalFaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/dalFaction.go -------------------------------------------------------------------------------- /dataLayer/dal/dalGroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/dalGroup.go -------------------------------------------------------------------------------- /dataLayer/dal/dalRarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/dalRarity.go -------------------------------------------------------------------------------- /dataLayer/dal/dalVariation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/dalVariation.go -------------------------------------------------------------------------------- /dataLayer/dal/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/dal/db.go -------------------------------------------------------------------------------- /dataLayer/factory/FactoryCard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/factory/FactoryCard.go -------------------------------------------------------------------------------- /dataLayer/factory/FactoryCategory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/factory/FactoryCategory.go -------------------------------------------------------------------------------- /dataLayer/factory/FactoryFaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/factory/FactoryFaction.go -------------------------------------------------------------------------------- /dataLayer/factory/FactoryGroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/factory/FactoryGroup.go -------------------------------------------------------------------------------- /dataLayer/factory/FactoryRarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/factory/FactoryRarity.go -------------------------------------------------------------------------------- /dataLayer/factory/FactoryVariation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/factory/FactoryVariation.go -------------------------------------------------------------------------------- /dataLayer/models/card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/models/card.go -------------------------------------------------------------------------------- /dataLayer/models/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/models/category.go -------------------------------------------------------------------------------- /dataLayer/models/faction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/models/faction.go -------------------------------------------------------------------------------- /dataLayer/models/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/models/group.go -------------------------------------------------------------------------------- /dataLayer/models/rarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/models/rarity.go -------------------------------------------------------------------------------- /dataLayer/models/variation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/dataLayer/models/variation.go -------------------------------------------------------------------------------- /design/api_definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/design/api_definition.go -------------------------------------------------------------------------------- /design/media_types_definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/design/media_types_definition.go -------------------------------------------------------------------------------- /design/resources_definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/design/resources_definition.go -------------------------------------------------------------------------------- /design/types_definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/design/types_definition.go -------------------------------------------------------------------------------- /faction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/faction.go -------------------------------------------------------------------------------- /group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/group.go -------------------------------------------------------------------------------- /helpers/full_urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/helpers/full_urls.go -------------------------------------------------------------------------------- /helpers/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/helpers/header.go -------------------------------------------------------------------------------- /helpers/pageHelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/helpers/pageHelper.go -------------------------------------------------------------------------------- /helpers/uuidEncoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/helpers/uuidEncoder.go -------------------------------------------------------------------------------- /index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/index.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/main.go -------------------------------------------------------------------------------- /rarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/rarity.go -------------------------------------------------------------------------------- /serverService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/serverService/README.md -------------------------------------------------------------------------------- /serverService/gwentapi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/serverService/gwentapi.service -------------------------------------------------------------------------------- /serverService/gwentapi.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/serverService/gwentapi.socket -------------------------------------------------------------------------------- /serverService/serverCore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/serverService/serverCore.go -------------------------------------------------------------------------------- /serverService/serverStart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/serverService/serverStart.go -------------------------------------------------------------------------------- /serverService/serverStart_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/serverService/serverStart_linux.go -------------------------------------------------------------------------------- /swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/swagger/swagger.json -------------------------------------------------------------------------------- /swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GwentAPI/gwentapi/HEAD/swagger/swagger.yaml --------------------------------------------------------------------------------