Refactor and remove sqlite and replace with MySQL
This commit is contained in:
13
internal/logging/messages.go
Normal file
13
internal/logging/messages.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package logging
|
||||
|
||||
import (
|
||||
"log"
|
||||
)
|
||||
|
||||
func Info(msg string, args ...any) {
|
||||
log.Printf("[INFO] "+msg, args...)
|
||||
}
|
||||
|
||||
func Error(msg string, args ...any) {
|
||||
log.Printf("[ERROR] "+msg, args...)
|
||||
}
|
||||
Reference in New Issue
Block a user