https://github.com/kryptonbd/go-eventflow
Event Management REST API built with Go
https://github.com/kryptonbd/go-eventflow
gin go golang rest-api
Last synced: 4 months ago
JSON representation
Event Management REST API built with Go
- Host: GitHub
- URL: https://github.com/kryptonbd/go-eventflow
- Owner: KryptonBD
- Created: 2025-03-10T16:17:57.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-03-10T16:18:13.000Z (10 months ago)
- Last Synced: 2025-09-09T04:44:10.927Z (4 months ago)
- Topics: gin, go, golang, rest-api
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# EventFlow
EventFlow is a robust event management API built with Go and the Gin web framework. This application enables user authentication, comprehensive event management with CRUD operations, and attendee registration functionality.
## Getting Started
### Installation
1. Clone the repository
2. Install dependencies
```bash
go mod download
```
3. Run the application
```bash
go run main.go
```
The API will be available at `http://localhost:8080`
## API Endpoints
- **Authentication**
- POST `/api/register` - Create new user
- POST `/api/login` - Authenticate user
- **Events**
- GET `/api/events` - List all events
- GET `/api/events/:id` - Get event details
- POST `/api/events` - Create new event
- PUT `/api/events/:id` - Update event
- DELETE `/api/events/:id` - Delete event
- **Registration**
- POST `/api/events/:id/register` - Register for event
- DELETE `/api/events/:id/register` - Cancel registration