adds base config code

This commit is contained in:
2023-11-04 09:38:56 -05:00
parent 44a4ec7bcd
commit f19ecf52c2
5 changed files with 408 additions and 0 deletions

19
readme.md Normal file
View File

@@ -0,0 +1,19 @@
# GoLang Base
## Table of Contents
1. [Information](#information)
1. [Usage](#usage)
## Information
This is a base repository for starting a GoLang project. It includes a set of linters, rules, and other configurations to make starting a new project easier.
## Usage
Clone this repository and run the following command:
```bash
PRJCT="example.com/newproject"
go mod init "${PRJCT}"
```