You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cronsun/models/node.go

9 lines
168 B

package models
8 years ago
// 执行 cron cmd 的进程
// 注册到 /cronsun/proc/<id>
8 years ago
type Node struct {
ID string `json:"-"` // ip
PID string `json:"pid"` // 进程 pid
8 years ago
}