Files
vctp2/internal/tasks/monitorVcenter.go
Nathan Coad 19d5b2406e
Some checks are pending
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / End-to-End (push) Waiting to run
CI / Publish Docker (push) Blocked by required conditions
continuous-integration/drone/push Build is passing
add code for VmBeingModified endpoint
2024-09-16 08:40:24 +10:00

12 lines
219 B
Go

package tasks
import (
"context"
"log/slog"
)
// use gocron to check vcenters for VMs or updates we don't know about
func (c *CronTask) RunVcenterPoll(ctx context.Context, logger *slog.Logger) error {
return nil
}