comments cleanup

This commit is contained in:
ModulatingForce 2024-03-23 14:52:41 -04:00
commit 3a0e00c323
2 changed files with 2 additions and 17 deletions

View file

@ -43,14 +43,8 @@ pub enum ChangeResult {
// pub use ChType::Channel;
//
//simplifying from enum to struct
pub struct Channel(String);
impl Channel
{
pub fn construct(channel_string:String) -> Channel
{
Channel(channel_string)
}
}
pub struct Channel(pub String);
use super::botmodules::StatusType;
#[derive(Clone)]