Skip to content

Commit 967b31b

Browse files
chore(log): move logging to its own module
This change moves the `log` package to its own module so it can be imported elsewhere.
1 parent 9dba46c commit 967b31b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/smtg-ai/claude-squad
22

3-
go 1.23.0
4-
5-
toolchain go1.24.1
3+
go 1.24.1
64

75
require (
86
github.com/atotto/clipboard v0.1.4
@@ -15,12 +13,15 @@ require (
1513
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6
1614
github.com/muesli/reflow v0.3.0
1715
github.com/muesli/termenv v0.15.2
16+
github.com/smtg-ai/claude-squad/log v0.0.0 // dummy version which gets replaced below
1817
github.com/spf13/cobra v1.9.1
1918
github.com/stretchr/testify v1.10.0
2019
golang.org/x/sys v0.31.0
2120
golang.org/x/term v0.30.0
2221
)
2322

23+
replace github.com/smtg-ai/claude-squad/log => ./log
24+
2425
require (
2526
dario.cat/mergo v1.0.0 // indirect
2627
github.com/Microsoft/go-winio v0.6.2 // indirect

0 commit comments

Comments
 (0)