mirror of
https://github.com/89luca89/distrobox.git
synced 2026-08-19 01:14:49 -05:00
* chore(repo): remove shell implementation * chore(repo): remove bash completion for sub-commands There is no need for separate files as there will be no dedicated binary for sub-commands * chore(repo): remove zsh completion for sub-commands There is no need for separate files as there will be no dedicated binary for sub-commands * chore(repo): delete RFC We are not using RFC at the moment * chore(repo): move golang project to the root * chore(ci): move golang project to the root * chore(repo): use standard .gitignore for golang projects source: https://github.com/github/gitignore/blob/main/Go.gitignore * chore(ci): compatibility CI to handle a golang project * refactor(ci): run shell script checks against the inside-distrobox files * refactor(ci): merge ci.yml workflow into main.yml
17 lines
336 B
AMPL
17 lines
336 B
AMPL
module github.com/89luca89/distrobox
|
|
|
|
go 1.25.3
|
|
|
|
require (
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/urfave/cli/v3 v3.5.0
|
|
gopkg.in/ini.v1 v1.67.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|