Making a basic embryo of a readme

This commit is contained in:
Lilleman auf Larv 2022-10-11 06:25:08 +02:00
parent 665dbca1c9
commit a5cc91cebb

View File

@ -1,3 +1,17 @@
# go_log
# Simple logger for Go
Simple logger
## Installation
`go get -u https://gitea.larvit.se/pwrpln/go_log`
## Example usage
```go
import "gitea.larvit.se/pwrpln/go_log"
func main() {
log := Log{}
log.SetDefaultValues{}
log.Info("My little log message")
}
```