1#![allow(dead_code)] 2#![allow(unused_imports)] 3mod models; 4mod ghaction; 5 6use crate::ghaction::GHAction; 7 8 9pub fn init() -> GHAction { 10 GHAction::new() 11} 12 13 14#[cfg(test)] 15mod tests { 16}