1//! Main entry point for Zebrad, to be used in zebra-scan tests 2 3use zebrad::application::{boot, APPLICATION}; 4 5/// Process entry point for `zebrad` 6fn main() { 7 boot(&APPLICATION); 8}