Files
Sylve/internal/interfaces/services/system/basic.go
T

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"`
}