Define the desired API

This commit is contained in:
Mihai Dinculescu
2022-10-08 19:09:57 +01:00
parent 41ebdbd03d
commit 6d8fc61c0b
19 changed files with 642 additions and 300 deletions

5
src/domain/period.rs Normal file
View File

@@ -0,0 +1,5 @@
#[derive(Debug, Clone)]
pub enum PeriodEnum {
VisualFrame { interval: u32 },
Second,
}