modulepackage
0.0.0-20241201054959-4c91607f0aab
Repository: https://github.com/kevbob1/godemo.git
Documentation: pkg.go.dev
# README
Go Demo Service
This is a simple Go service that prints "Hello World" via a REST API.
Prerequisites
- Go (version 1.22 or later)
Installation
- Clone this repository:
git clone [email protected]:kevbob1/godemo.git
- Change to the project directory:
cd godemo
Usage
Run the service using the following command:
go run main.go
Data Flow
graph LR;
S[Start];
S --> E[Check User Exists];
E --> |yes| F[Login];
E --> |no| G[Create User];
F --> I[Login Success];
G --> I;
I --> Z[End];
TODO: make vagrantfile arch aware and grab the correct go binary
# Functions
No description provided by the author