initial commit

This commit is contained in:
2024-05-04 06:46:23 -05:00
commit 61cdb81c9a
2 changed files with 18 additions and 0 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module gitlab.com/developerdurp/logger
go 1.22.0

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package logger
import "log"
func LogInfo(message string) {
log.Printf("INFO - %v", message)
}
func LogWarning(message string) {
log.Printf("WARN - %v", message)
}
func LogError(message string) {
log.Printf("ERROR - %v", message)
}