- Downloads
Initial folders module
Showing
- accounts/accounts.go 5 additions, 10 deletionsaccounts/accounts.go
- folders/folders.go 63 additions, 0 deletionsfolders/folders.go
- folders/sql/1_create_table.down.sql 1 addition, 0 deletionsfolders/sql/1_create_table.down.sql
- folders/sql/1_create_table.up.sql 18 additions, 0 deletionsfolders/sql/1_create_table.up.sql
- go.mod 5 additions, 0 deletionsgo.mod
- go.sum 13 additions, 0 deletionsgo.sum
- repl/command.go 4 additions, 0 deletionsrepl/command.go
- repl/folders.go 18 additions, 0 deletionsrepl/folders.go
folders/folders.go
0 → 100644
folders/sql/1_create_table.down.sql
0 → 100644
folders/sql/1_create_table.up.sql
0 → 100644
| ... | @@ -5,17 +5,22 @@ go 1.24.2 | ... | @@ -5,17 +5,22 @@ go 1.24.2 |
| require ( | require ( | ||
| github.com/adrg/xdg v0.5.3 | github.com/adrg/xdg v0.5.3 | ||
| github.com/chzyer/readline v1.5.1 | github.com/chzyer/readline v1.5.1 | ||
| github.com/golang-migrate/migrate/v4 v4.18.3 | |||
| github.com/urfave/cli/v3 v3.3.2 | github.com/urfave/cli/v3 v3.3.2 | ||
| modernc.org/sqlite v1.37.0 | modernc.org/sqlite v1.37.0 | ||
| ) | ) | ||
| require ( | require ( | ||
| github.com/dustin/go-humanize v1.0.1 // indirect | github.com/dustin/go-humanize v1.0.1 // indirect | ||
| github.com/golang-migrate/migrate v3.5.4+incompatible // indirect | |||
| github.com/google/uuid v1.6.0 // indirect | github.com/google/uuid v1.6.0 // indirect | ||
| github.com/hashicorp/errwrap v1.1.0 // indirect | |||
| github.com/hashicorp/go-multierror v1.1.1 // indirect | |||
| github.com/mattn/go-isatty v0.0.20 // indirect | github.com/mattn/go-isatty v0.0.20 // indirect | ||
| github.com/mitchellh/go-wordwrap v1.0.1 // indirect | github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
| github.com/ncruces/go-strftime v0.1.9 // indirect | github.com/ncruces/go-strftime v0.1.9 // indirect | ||
| github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
| go.uber.org/atomic v1.11.0 // indirect | |||
| golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect | golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect | ||
| golang.org/x/sys v0.33.0 // indirect | golang.org/x/sys v0.33.0 // indirect | ||
| modernc.org/libc v1.65.0 // indirect | modernc.org/libc v1.65.0 // indirect | ||
| ... | ... | ||
| ... | ... |
Please sign in to comment