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

https://github.com/zaxwebs/hello-go

Learning Go API servers
https://github.com/zaxwebs/hello-go

go

Last synced: about 1 year ago
JSON representation

Learning Go API servers

Awesome Lists containing this project

README

          

# Hello Go Web Server

A simple web server written in Go that responds with "Hello from Go!" on the root endpoint.

## Getting Started

### Prerequisites

- Go 1.x installed on your machine

### Running the Server

1. Clone this repository
2. Navigate to the project directory
3. Run the server:

```bash
go run main.go
```

The server will start on port 8080. Visit http://localhost:8080 in your browser to see the response.