1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use crate::core::ics02_client::msgs::create_client::MsgCreateAnyClient;
use crate::core::ics02_client::msgs::misbehavior::MsgSubmitAnyMisbehaviour;
use crate::core::ics02_client::msgs::update_client::MsgUpdateAnyClient;
use crate::core::ics02_client::msgs::upgrade_client::MsgUpgradeAnyClient;
pub mod create_client;
pub mod misbehavior;
pub mod update_client;
pub mod upgrade_client;
#[allow(clippy::large_enum_variant)]
#[derive(Clone, Debug)]
pub enum ClientMsg {
    CreateClient(MsgCreateAnyClient),
    UpdateClient(MsgUpdateAnyClient),
    Misbehaviour(MsgSubmitAnyMisbehaviour),
    UpgradeClient(MsgUpgradeAnyClient),
}