mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
10 lines
265 B
Go
10 lines
265 B
Go
|
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package structs
|
||
|
|
||
|
// ReplaceFlagsOption options when replacing the flags of a repository
|
||
|
type ReplaceFlagsOption struct {
|
||
|
Flags []string `json:"flags"`
|
||
|
}
|