4 Commits

Author SHA1 Message Date
Adrian Zürcher
eac917fa58 remove wrong .git 2025-04-16 09:14:39 +02:00
Adrian Zürcher
a6eba03146 fix wrong modul name 2025-04-16 09:03:02 +02:00
Adrian Zürcher
3aecfe9832 fix wrong .gitignore name 2025-04-16 08:40:07 +02:00
Adrian Zürcher
f9471b91c0 chore: remove tracked .log files and update .gitignore 2025-04-16 08:28:43 +02:00
4 changed files with 3 additions and 3 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.log

View File

@@ -1 +0,0 @@
**/*.log

2
go.mod
View File

@@ -1,4 +1,4 @@
module github.com/tecamino/tecamino-logger.git
module github.com/tecamino/tecamino-logger
go 1.21.0

View File

@@ -1,6 +1,6 @@
package main
import "github.com/tecamino/tecamino-logger.git/logger"
import "github.com/tecamino/tecamino-logger/logger"
func main() {
log, err := logger.NewLogger("Test")