1234567891011121314151617181920212223242526272829303132 |
- package client
- import (
- "github.com/fatedier/frp/models/config"
- )
- type HealthCheckMonitor struct {
- cfg config.HealthCheckConf
- }
- func NewHealthCheckMonitor(cfg *config.HealthCheckConf) *HealthCheckMonitor {
- return &HealthCheckMonitor{
- cfg: *cfg,
- }
- }
- func (monitor *HealthCheckMonitor) Start() {
- }
|