secador 0.1.0

Stop repeating code
Documentation
1
2
3
4
5
6
7
8
9
use crate::tests::test_single_line::Origin;

pub struct Happy;

impl Happy {
    pub fn init(_: &Origin, h: Happy) -> Happy {
        h
    }
}