chore(module,repository): update module path with new repository

This commit is contained in:
Guz
2025-08-26 15:41:05 -03:00
parent 67bf6cf61e
commit 3211a6917b
5 changed files with 24 additions and 6 deletions

18
go.mod Normal file
View File

@@ -0,0 +1,18 @@
// Copyright 2025-present Gustavo "Guz" L. de Mello
// Copyright 2025-present The Lored.dev Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
module forge.capytal.company/loreddev/smalltrip
go 1.24.5

View File

@@ -18,8 +18,8 @@ package smalltrip
import (
"log/slog"
"forge.capytal.company/loreddev/x/smalltrip/middleware"
"forge.capytal.company/loreddev/x/smalltrip/multiplexer"
"forge.capytal.company/loreddev/smalltrip/middleware"
"forge.capytal.company/loreddev/smalltrip/multiplexer"
)
type Option func(*router)

View File

@@ -20,7 +20,7 @@ import (
"fmt"
"net/http"
"forge.capytal.company/loreddev/x/smalltrip/middleware"
"forge.capytal.company/loreddev/smalltrip/middleware"
)
type ContextKey string

View File

@@ -19,7 +19,7 @@ import (
"net/http"
"strings"
"forge.capytal.company/loreddev/x/smalltrip/multiplexer"
"forge.capytal.company/loreddev/smalltrip/multiplexer"
)
func Multiplexer(m multiplexer.Multiplexer, opts ...MultiplexerOption) multiplexer.Multiplexer {

View File

@@ -23,8 +23,8 @@ import (
"reflect"
"runtime"
"forge.capytal.company/loreddev/x/smalltrip/middleware"
"forge.capytal.company/loreddev/x/smalltrip/multiplexer"
"forge.capytal.company/loreddev/smalltrip/middleware"
"forge.capytal.company/loreddev/smalltrip/multiplexer"
)
type Router interface {