From 4dfcff507f14b83a566bb0b45e55a11cbb101dd1 Mon Sep 17 00:00:00 2001 From: Sean Hickey Date: Mon, 21 Feb 2022 22:47:36 -0800 Subject: [PATCH] Rename to gosimpleconf --- Readme.md | 2 +- go.mod | 2 +- simpleconf.go | 2 +- simpleconf_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 536f7b2..bea51f7 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -# go-simpleconf +# gosimpleconf This is a small library for parsing super simple configuration files. diff --git a/go.mod b/go.mod index dd91678..ce1573c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module gitea.wisellama.rocks/Wisellama/go-simpleconf +module gitea.wisellama.rocks/Wisellama/gosimpleconf go 1.17 diff --git a/simpleconf.go b/simpleconf.go index 5ea92e0..f181f3e 100644 --- a/simpleconf.go +++ b/simpleconf.go @@ -1,4 +1,4 @@ -package simpleconf +package gosimpleconf import ( "bufio" diff --git a/simpleconf_test.go b/simpleconf_test.go index 22046f4..95e981d 100644 --- a/simpleconf_test.go +++ b/simpleconf_test.go @@ -1,4 +1,4 @@ -package simpleconf +package gosimpleconf import ( "strings"