padmet/
policy.rs

1
2#[derive(Debug, Clone)]
3pub struct Policy;
4
5impl Policy {
6    pub fn new() -> Self {
7        Policy {
8            
9        }
10    }
11}