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

https://github.com/kayprogrammer/booking_app

A simple cli application built with Go
https://github.com/kayprogrammer/booking_app

datatypes forloops golang ifelse print variables

Last synced: 7 months ago
JSON representation

A simple cli application built with Go

Awesome Lists containing this project

README

          

## BASICS OF GOLANG

#### Tutorial: [Golang Tutorial for Beginners | Full Go Course](https://www.youtube.com/watch?v=yyUHQIec83I&t=2082s) by TechWorld with Nana

#### Go Docs: [Documentation](https://go.dev/doc/)

## How to run locally

* Download this repo or run:
```bash
$ git clone git@github.com:kayprogrammer/booking_app.git
```
#### In any terminal
- Install Go
```bash
$ sudo apt install golang
```
#### In the root directory:
- Build and run server
```bash
$ go run main.go
```
OR
```bash
$ go run .
```