apps/shrink/go.mod 485 B raw
1
module github.com/stevedylandev/andromeda/apps/shrink
2
3
go 1.24.4
4
5
require (
6
	github.com/stevedylandev/andromeda/pkg/config v0.0.0
7
	github.com/stevedylandev/andromeda/pkg/darkmatter v0.0.0
8
	github.com/stevedylandev/andromeda/pkg/web v0.0.0
9
	golang.org/x/image v0.27.0
10
)
11
12
replace (
13
	github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config
14
	github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter
15
	github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web
16
)