5d3b56fe8e
Separa aplicaciones ejecutables (docker_tui, pipeline_launcher) de la librería fn_operations. La carpeta apps/ contiene módulos Go independientes, fn_operations/ queda como librería pura de models/store/operations. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
1.7 KiB
Modula-2
44 lines
1.7 KiB
Modula-2
module docker-tui
|
|
|
|
go 1.22.2
|
|
|
|
require (
|
|
github.com/charmbracelet/bubbletea v0.25.0
|
|
github.com/charmbracelet/lipgloss v0.9.1
|
|
github.com/lucasdataproyects/devfactory v0.0.0
|
|
)
|
|
|
|
require (
|
|
github.com/apache/arrow/go/v14 v14.0.2 // indirect
|
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
|
github.com/charmbracelet/bubbles v0.18.0 // indirect
|
|
github.com/charmbracelet/harmonica v0.2.0 // indirect
|
|
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/google/flatbuffers v23.5.26+incompatible // indirect
|
|
github.com/klauspost/compress v1.16.7 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/marcboeker/go-duckdb v1.6.5 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mattn/go-localereader v0.0.1 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
|
github.com/muesli/termenv v0.15.2 // indirect
|
|
github.com/pierrec/lz4/v4 v4.1.18 // indirect
|
|
github.com/rivo/uniseg v0.4.6 // indirect
|
|
github.com/zeebo/xxh3 v1.0.2 // indirect
|
|
golang.org/x/mod v0.13.0 // indirect
|
|
golang.org/x/sync v0.4.0 // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
golang.org/x/term v0.6.0 // indirect
|
|
golang.org/x/text v0.13.0 // indirect
|
|
golang.org/x/tools v0.14.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
|
|
)
|
|
|
|
replace github.com/lucasdataproyects/devfactory => /home/lucas/.local_agentes/backend
|