mirror of
https://github.com/AlchemillaHQ/Sylve.git
synced 2026-06-16 01:06:35 +03:00
17 lines
524 B
Go
17 lines
524 B
Go
// SPDX-License-Identifier: BSD-2-Clause
|
|
//
|
|
// Copyright (c) 2025 The FreeBSD Foundation.
|
|
//
|
|
// This software was developed by Hayzam Sherif <hayzam@alchemilla.io>
|
|
// of Alchemilla Ventures Pvt. Ltd. <hello@alchemilla.io>,
|
|
// under sponsorship from the FreeBSD Foundation.
|
|
|
|
package systemServiceInterfaces
|
|
|
|
import "github.com/alchemillahq/sylve/internal/db/models"
|
|
|
|
type InitializeRequest struct {
|
|
Pools []string `json:"pools"`
|
|
Services []models.AvailableService `json:"services" binding:"required"`
|
|
}
|