Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tahmid-saj/uuid-service
Simple UUID generator service developed with Go / Gin.
https://github.com/tahmid-saj/uuid-service
gin go uuid-generator
Last synced: 15 days ago
JSON representation
Simple UUID generator service developed with Go / Gin.
- Host: GitHub
- URL: https://github.com/tahmid-saj/uuid-service
- Owner: tahmid-saj
- Created: 2024-10-13T16:20:28.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-18T02:10:13.000Z (2 months ago)
- Last Synced: 2024-10-22T01:01:11.537Z (2 months ago)
- Topics: gin, go, uuid-generator
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# uuid-service
Simple UUID generator service developed with Go / Gin.
## Directory structure
The directory structure is as follows:
- **models/**
- Data models used for UUID service.- **routes/**
- Contains route definitions for API endpoints.- **uuid/**
- Logic for generating and managing UUIDs.- **main.go**
- Entry point of the Go application, setting up the Gin server and routes.- **go.mod**
- Defines the module and dependencies for Go.- **go.sum**
- Checksums for dependencies.- **README.md**
- Overview and instructions for the UUID service.
## Overview
### Design
The service uses generates a 128-bit UUID. Similar services can be found here and below:
#### Similar services