An example of a CRUD api in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Unbewohnte 9e4bc96696
Update LICENSE
3 years ago
database Add files via upload 3 years ago
LICENSE Update LICENSE 3 years ago
README.md Add files via upload 3 years ago
curl_examples Add files via upload 3 years ago
main.go Add files via upload 3 years ago

README.md

REST api

RESTful api written in Go`s standart library

API has implementation of "GET", "POST", "PUT", "DELETE" http methods, allowing to Create, Read, Update and Delete json objects in database.

The structure of a basic json object represents Go struct "RandomData" with exported fields "title" (string), "text" (string) and unexported fields "DateCreated" (time.Time), "LastUpdated" (time.Time) and ID (int64)

Example of a single object stored in a json database : { "ID": 1618064651615612586, "DateCreated": "2021-04-10T14:24:11.615612068Z", "LastUpdated": "2021-04-10T14:24:11.615612068Z", "title": "Title", "text": "text" }

This project was my first take on such thing. The goal was to create a basic working example and it looks like that I`ve achieved that goal.