diff --git a/go.mod b/go.mod index 05e8348..9787118 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/nextmn/docker-setup go 1.25.5 require ( - github.com/nextmn/logrus-formatter v0.0.2 + github.com/nextmn/logrus-formatter v0.1.0 github.com/sirupsen/logrus v1.9.3 github.com/urfave/cli/v3 v3.6.1 ) diff --git a/go.sum b/go.sum index 08d5161..1115f15 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,8 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/nextmn/logrus-formatter v0.0.2 h1:3eQeBenWxWSX2i+h/ESMmjwS6wP3UmhEgLMu66BX9Ao= -github.com/nextmn/logrus-formatter v0.0.2/go.mod h1:DZrXx9tS+t0Qn86tfsQa1sZNwGMXrLTHpczUQwd/UgI= +github.com/nextmn/logrus-formatter v0.1.0 h1:SUVMFsckd18j/TMveaFed+mu6v4p7U9D9PuTNrI4w28= +github.com/nextmn/logrus-formatter v0.1.0/go.mod h1:+G9FGh86JyAJBDenHuMOtz2d+Dwkg5fYAUDG5rJj76M= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= diff --git a/internal/app/conf.go b/internal/app/conf.go index 6c3cf8b..004be74 100644 --- a/internal/app/conf.go +++ b/internal/app/conf.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app import ( diff --git a/internal/app/hook.go b/internal/app/hook.go index de77483..2955dbc 100644 --- a/internal/app/hook.go +++ b/internal/app/hook.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app // init & exit hooks iface diff --git a/internal/app/iproutehook.go b/internal/app/iproutehook.go index 16cc144..1caf304 100644 --- a/internal/app/iproutehook.go +++ b/internal/app/iproutehook.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app import ( diff --git a/internal/app/nat4hook.go b/internal/app/nat4hook.go index 085db34..39e8b37 100644 --- a/internal/app/nat4hook.go +++ b/internal/app/nat4hook.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app import ( diff --git a/internal/app/userhook.go b/internal/app/userhook.go index 60aa644..394d603 100644 --- a/internal/app/userhook.go +++ b/internal/app/userhook.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app import ( diff --git a/main.go b/main.go index eca0d34..97726aa 100644 --- a/main.go +++ b/main.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package main import (