Move ContinuallyRan into primitives

I'm unsure where else it'll be used within the processor, yet it's generally
useful and I don't want to make a dedicated crate yet.
This commit is contained in:
Luke Parker
2024-08-26 22:57:28 -04:00
parent 2fcd9530dd
commit b65dbacd6a
5 changed files with 102 additions and 83 deletions

View File

@@ -9,6 +9,9 @@ use group::GroupEncoding;
use scale::{Encode, Decode};
use borsh::{BorshSerialize, BorshDeserialize};
/// A module for task-related structs and functionality.
pub mod task;
mod output;
pub use output::*;