just 0.6.1

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
use crate::common::*;

pub(crate) trait Error: Display {
  fn code(&self) -> i32 {
    EXIT_FAILURE
  }
}