feat: user consent setting and retrieving (NOTE: does not affect recording yet)
This commit is contained in:
40
src/lib.rs
40
src/lib.rs
@@ -1,18 +1,22 @@
|
||||
mod command;
|
||||
mod one_to_many;
|
||||
mod one_to_many_with_data;
|
||||
mod one_to_one;
|
||||
mod storage;
|
||||
mod track_vcs;
|
||||
mod vc_user;
|
||||
|
||||
pub use command::{Router as CommandRouter, State, all as all_commands};
|
||||
pub use one_to_many::OneToManyUniqueBTreeMap;
|
||||
pub use one_to_many_with_data::OneToManyUniqueBTreeMapWithData;
|
||||
pub use one_to_one::OneToOneBTreeMap;
|
||||
pub use storage::Storage;
|
||||
pub use track_vcs::{GuildVoiceChannelToTextChannel, VCs, initialize_vcs, update_vcs};
|
||||
pub use vc_user::{UserInVCData, VoiceStatus};
|
||||
|
||||
capnp::generated_code!(pub mod user_capnp);
|
||||
capnp::generated_code!(pub mod bot_capnp);
|
||||
mod command;
|
||||
mod one_to_many;
|
||||
mod one_to_many_with_data;
|
||||
mod one_to_one;
|
||||
mod operator_ext;
|
||||
mod option_ext;
|
||||
mod storage;
|
||||
mod track_vcs;
|
||||
mod user_data;
|
||||
mod vc_user;
|
||||
capnp::generated_code!(mod bot_capnp);
|
||||
capnp::generated_code!(mod user_capnp);
|
||||
|
||||
pub use command::{Router as CommandRouter, State, all as all_commands};
|
||||
pub use one_to_many::OneToManyUniqueBTreeMap;
|
||||
pub use one_to_many_with_data::OneToManyUniqueBTreeMapWithData;
|
||||
pub use one_to_one::OneToOneBTreeMap;
|
||||
pub use operator_ext::OperatorExt;
|
||||
pub use storage::Storage;
|
||||
pub use track_vcs::{GuildVoiceChannelToTextChannel, VCs, initialize_vcs, update_vcs};
|
||||
pub use user_data::UserDataManager;
|
||||
pub use vc_user::{UserInVCData, VoiceStatus};
|
||||
|
||||
Reference in New Issue
Block a user