(Feat): Initial Commit
Some checks failed
Build & Test / build-test (push) Has been cancelled
Build & Test / swagger-codegen-cli (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled

This commit is contained in:
2026-07-03 19:41:31 +05:30
commit 7e940c83a7
461 changed files with 45002 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
swagger: "2.0"
info:
title: allaboutapps.dev/aw/go-starter
version: 0.1.0
paths: {}
definitions:
Paginatable:
type: object
required:
- limit
- offset
- total
properties:
limit:
type: integer
description: Actual limit applied to request
offset:
type: integer
description: Actual offset applied to request
total:
type: integer
description: Total number of records available
parameters:
offsetParam:
type: integer
in: query
name: offset
description: Offset used for pagination, number of records to skip
default: 0
minimum: 0
limitParam:
type: integer
in: query
name: limit
description: Limit used for pagination, number of records to retrieve
default: 50
minimum: 1
maximum: 500
orderDirParam:
type: string
in: query
name: orderDir
description: Direction of order applied, defaults to `asc` if omitted. `asc` will sort `NULL` values at the end of the list.
enum:
- asc
- desc
default: asc