An open API service indexing awesome lists of open source software.

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.

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.