Skip to content

Commit a496708

Browse files
committed
Limit error API to a single enum
1 parent f3e12b1 commit a496708

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rustoku-cli/tests/cli_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use assert_cmd::prelude::*;
2-
use rustoku_lib::error::RustokuError;
2+
use rustoku_lib::RustokuError;
33
use std::process::Command;
44

55
/// Helper function to get the path to our compiled binary

rustoku-lib/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! one-line representation for easy copying and pasting.
1111
1212
pub mod core;
13-
pub mod error;
13+
mod error;
1414
mod format;
1515

1616
pub use core::{Rustoku, generate_board};

0 commit comments

Comments
 (0)