mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
16 lines
551 B
Rust
16 lines
551 B
Rust
mod more_auth;
|
|
mod chat_ignores;
|
|
mod pending_sanctions;
|
|
mod all_joined_channels;
|
|
|
|
use polariton_server::operations::OperationsHandler;
|
|
|
|
pub fn handler() -> OperationsHandler<crate::UserTy> {
|
|
OperationsHandler::new()
|
|
.without_state(more_auth::MoreLobbyAuth)
|
|
.without_state(chat_ignores::ignores_provider())
|
|
.without_state(pending_sanctions::pending_sanctions_checker())
|
|
.without_state(all_joined_channels::all_channels_provider())
|
|
//.without_state(polariton_server::operations::Ack::<00000, _>::default())
|
|
}
|