Skip to content

Commit

Permalink
Fix compilation issue overlooked in merge commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bbockelm committed Apr 9, 2024
1 parent a527173 commit 72d4959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions origin/origin_ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
)

type exportsRes struct {
Type string `json:"type"` // either "posix" or "s3"
Exports *[]server_utils.OriginExport `json:"exports"`
Type string `json:"type"` // either "posix" or "s3"
Exports []server_utils.OriginExport `json:"exports"`
}

func handleExports(ctx *gin.Context) {
Expand Down

0 comments on commit 72d4959

Please sign in to comment.