mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-25 17:05:21 +00:00
16 lines
249 B
Go
16 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"
|