mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-19 11:55:08 +08:00
16 lines
237 B
Go
16 lines
237 B
Go
package model
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type WorkflowTemplate string
|
|
|
|
type Workflow struct {
|
|
UUID uuid.UUID
|
|
Name string
|
|
Template WorkflowTemplate
|
|
}
|
|
|
|
func (wt *WorkflowTemplate) ToBytes() []byte {
|
|
return []byte(*wt)
|
|
}
|