https://github.com/designengineered/rest_faq
A RESTful API server using the Gin web framework and GORM ORM library, targeting a SQLite database. It defines two main data models: FAQ and Tag, where an FAQ can have multiple tags through a many-to-many relationship. The server provides CRUD (Create, Read, Update, Delete) operations for both FAQs and Tags, with routes set up for each operation.
https://github.com/designengineered/rest_faq
database faqs go server
Last synced: over 1 year ago
JSON representation
A RESTful API server using the Gin web framework and GORM ORM library, targeting a SQLite database. It defines two main data models: FAQ and Tag, where an FAQ can have multiple tags through a many-to-many relationship. The server provides CRUD (Create, Read, Update, Delete) operations for both FAQs and Tags, with routes set up for each operation.
- Host: GitHub
- URL: https://github.com/designengineered/rest_faq
- Owner: designengineered
- License: apache-2.0
- Created: 2024-02-12T20:24:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T20:55:22.000Z (over 2 years ago)
- Last Synced: 2025-01-14T06:44:03.167Z (over 1 year ago)
- Topics: database, faqs, go, server
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rest_faq
a RESTful API server using the Gin web framework and GORM ORM library, targeting a SQLite database. It defines two main data models: FAQ and Tag, where an FAQ can have multiple tags through a many-to-many relationship. The server provides CRUD (Create, Read, Update, Delete) operations for both FAQs and Tags, with routes set up for each operation.