change the name of the simulator submodule into runner

This commit is contained in:
alpaylan 2024-12-23 16:16:39 -05:00
parent 4f07342fdc
commit 2186b3973b
6 changed files with 6 additions and 6 deletions

View file

@ -6,9 +6,9 @@ use model::query::{Create, Query};
use model::table::{Column, Name, Table, Value};
use rand::prelude::*;
use rand_chacha::ChaCha8Rng;
use simulator::cli::SimulatorCLI;
use simulator::env::{SimConnection, SimulatorEnv, SimulatorOpts};
use simulator::io::SimulatorIO;
use runner::cli::SimulatorCLI;
use runner::env::{SimConnection, SimulatorEnv, SimulatorOpts};
use runner::io::SimulatorIO;
use std::backtrace::Backtrace;
use std::io::Write;
use std::path::Path;
@ -19,7 +19,7 @@ use tempfile::TempDir;
mod generation;
mod model;
mod properties;
mod simulator;
mod runner;
#[allow(clippy::arc_with_non_send_sync)]
fn main() {