Adding release candidate for 0.2.0

Signed-off-by: Kris Nóva <kris@nivenly.com>
This commit is contained in:
Kris Nóva 2021-02-14 00:17:49 -08:00
parent 8e2d9fdba2
commit 67063110e4
14 changed files with 699 additions and 416 deletions

12
examples/legacy.go Normal file
View file

@ -0,0 +1,12 @@
package main
import "github.com/kris-nova/novaarchive/logger"
func main() {
logger.Level = 4
logger.Always("Always logging")
logger.Info("Info logging")
logger.Debug("Debug logging")
}