Function cpo_analyzer::run[][src]

pub fn run() -> Result<(), Box<dyn Error>>

Entry point for the commandline agrument/binary version of the program. The location of the configuration file is taken from those commandline arguments, and passed on to the process function.

Example: CPO analyzer main function

use cpo_analyzer::run;

fn main() -> Result<(), Box<dyn std::error::Error>> {
  run()
}