change internals to internal

This commit is contained in:
Joel Wetzell
2025-11-21 07:35:41 -06:00
parent d1d00237b0
commit fe2a54d4cd
12 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"log/slog"
"github.com/jwetzell/showbridge-go/internals/processing"
"github.com/jwetzell/showbridge-go/internal/processing"
)
type Route struct {
+1 -1
View File
@@ -16,7 +16,7 @@ type Router struct {
func NewRouter(ctx context.Context, config Config) (*Router, error) {
logger := slog.New(slog.NewTextHandler(os.Stdout, &slog.HandlerOptions{
Level: slog.LevelInfo,
Level: slog.LevelDebug,
}))
slog.SetDefault(logger)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"net"
"time"
"github.com/jwetzell/showbridge-go/internals/framing"
"github.com/jwetzell/showbridge-go/internal/framing"
)
type TCPClient struct {
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"log/slog"
"net"
"github.com/jwetzell/showbridge-go/internals/framing"
"github.com/jwetzell/showbridge-go/internal/framing"
)
type TCPServer struct {