Skip to content

Commit

Permalink
search wiz
Browse files Browse the repository at this point in the history
  • Loading branch information
rusq committed Nov 4, 2024
1 parent f51f5ea commit 4cd25db
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
File renamed without changes.
18 changes: 18 additions & 0 deletions cmd/slackdump/internal/archive/search_wizard.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package archive

import (
"context"

"github.com/rusq/slackdump/v3/cmd/slackdump/internal/golang/base"
"github.com/rusq/slackdump/v3/cmd/slackdump/internal/ui/dumpui"
)

func SearchWizard(ctx context.Context, cmd *base.Command, args []string) error {
w := &dumpui.Wizard{
Title: "Dump Search Results",
Name: "Search",
Cmd: cmdSearchAll,
}

return w.Run(ctx)
}

0 comments on commit 4cd25db

Please sign in to comment.