2024-05-23 16:33:30 +00:00
|
|
|
package temporal
|
|
|
|
|
|
|
|
type ActivityCheckParam struct {
|
|
|
|
Script string
|
2024-05-25 08:24:05 +00:00
|
|
|
Target *Target
|
2024-05-23 16:33:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ActivityCheckResult struct {
|
|
|
|
Success bool
|
|
|
|
Note string
|
|
|
|
}
|
|
|
|
|
|
|
|
const ActivityCheckName = "CHECK"
|