Skip to content

Commit

Permalink
why was year flag missing?
Browse files Browse the repository at this point in the history
  • Loading branch information
TanklesXL committed Jun 25, 2024
1 parent 0a09d76 commit f852ab2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gladvent.gleam
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import argv
import gladvent/internal/cmd
import gladvent/internal/cmd/new
import gladvent/internal/cmd/run
import gleam/io
Expand All @@ -18,8 +19,8 @@ pub fn main() {
)
|> glint.with_name("gladvent")
|> glint.as_module
|> glint.with_min_first_column_width(10)
|> glint.pretty_help(glint.default_pretty_help())
|> glint.group_flag(at: [], of: cmd.year_flag())
|> glint.add(at: ["new"], do: new.new_command())
|> glint.group_flag(at: ["run"], of: run.timeout_flag())
|> glint.group_flag(at: ["run"], of: run.allow_crash_flag())
Expand Down

0 comments on commit f852ab2

Please sign in to comment.