mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-09-26 17:51:13 +08:00
9 lines
225 B
Go
9 lines
225 B
Go
package v1
|
|
|
|
// Service represents an installable "service" added to the system.
|
|
// This can be something like modeldb, or some other service that complements the main system.
|
|
type Service struct {
|
|
Name string
|
|
URL string
|
|
}
|