Переименовал пакет в gol

This commit is contained in:
Rinsvent 2024-09-21 16:45:50 +07:00
parent 99a53ac87c
commit 1489c64a01
7 changed files with 7 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea

View File

@ -1,4 +1,4 @@
package logger package gol
import ( import (
"time" "time"

View File

@ -1,4 +1,4 @@
package logger package gol
import ( import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"

2
go.mod
View File

@ -1,4 +1,4 @@
module go-logger module git.rinsvent.ru/rinsvent/gol
go 1.23 go 1.23

View File

@ -1,4 +1,4 @@
package logger package gol
import ( import (
"fmt" "fmt"

View File

@ -1,6 +1,6 @@
//go:build !windows //go:build !windows
package logger package gol
import ( import (
"log" "log"

View File

@ -1,6 +1,6 @@
//go:build windows //go:build windows
package logger package gol
func redirectStderrToFile(conf *Configuration) { func redirectStderrToFile(conf *Configuration) {
} }