Initial commit

This commit is contained in:
ycc
2023-01-28 13:40:19 +01:00
parent aa5c0a0325
commit 455fbeaf8a
6 changed files with 221 additions and 0 deletions

10
creds_test.go Normal file
View File

@@ -0,0 +1,10 @@
package localconfig
import (
"testing"
)
func TestInit(t *testing.T) {
var creds Creds
creds.Init("localconfig_test")
}