Skip to content

Commit

Permalink
Modularize WebUI (#8450)
Browse files Browse the repository at this point in the history
* Modularize WebUI

* Fix tool chain dep.

* Fix tool chain dep. 2
  • Loading branch information
N-o-Z authored Dec 31, 2024
1 parent e3b46c1 commit 54977e5
Show file tree
Hide file tree
Showing 4 changed files with 648 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/lakefs/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ func Execute() {
}
}

func GetRoot() *cobra.Command {
return rootCmd
}

var initOnce sync.Once

//nolint:gochecknoinits
Expand Down
6 changes: 6 additions & 0 deletions go.work
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
go 1.22

use (
.
./webui
)
Loading

0 comments on commit 54977e5

Please sign in to comment.