| 436 | |
| 437 | #[derive(Clone)] |
| 438 | pub struct IntervalTimer { |
| 439 | pub name: String, |
| 440 | pub interval: IntervalType, |
| 441 | pub last_run: DateTime<Utc>, |
| 442 | // pub script_id: u64, |
| 443 | pub plugin_id: Option<u64>, |
| 444 | } |
| 445 | |
| 446 | #[derive(Clone, Serialize, Deserialize, Debug)] |
| 447 | pub enum IntervalType { |
no outgoing calls
no test coverage detected