1 2 3 4 5 6 7 8 9 10 11
use std::io; mod add; mod complete; mod delete; mod list; mod matching; fn main() -> io::Result<()> { matching::matching() }