8 lines
190 B
Go
8 lines
190 B
Go
package settings
|
|
|
|
// OnlyOffice contains the onlyoffice server connection settings of the app.
|
|
type OnlyOffice struct {
|
|
URL string `json:"url"`
|
|
JWTSecret string `json:"jwtSecret"`
|
|
}
|