refactor: naming

This commit is contained in:
Levente Nas
2024-09-25 09:21:25 +02:00
parent 23a8a9ee04
commit 853ae9b45d
11 changed files with 122 additions and 122 deletions

View File

@@ -6,14 +6,14 @@ import (
)
// A logger without logging functionality
type NullLoggerimpl struct{}
type NullLoggerImpl struct{}
// A logger that logs to sdtout
type ConsoleLoggerimpl struct {
type ConsoleLoggerImpl struct {
messages chan string
}
type FileLoggerimpl struct {
type FileLoggerImpl struct {
messages chan string
mutex *sync.Mutex
logFile *os.File