mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
15 lines
249 B
Go
15 lines
249 B
Go
package temporal
|
|
|
|
import "github.com/mentos1386/zdravko/database/models"
|
|
|
|
type ActivityCheckParam struct {
|
|
Script string
|
|
Target *models.Target
|
|
}
|
|
|
|
type ActivityCheckResult struct {
|
|
Success bool
|
|
Note string
|
|
}
|
|
|
|
const ActivityCheckName = "CHECK"
|