record-daemon: initial commit
This commit is contained in:
15
record-daemon/src/lqp/mod.rs
Normal file
15
record-daemon/src/lqp/mod.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
//! League Client API (LQP) module.
|
||||
//!
|
||||
//! This module handles communication with the League of Legends client
|
||||
//! via WebSocket and REST API for game event detection and capture.
|
||||
|
||||
mod auth;
|
||||
mod client;
|
||||
mod events;
|
||||
|
||||
pub use auth::{LockfileCredentials, LockfileWatcher};
|
||||
pub use client::{GameflowPhase, LqpClient};
|
||||
pub use events::{
|
||||
DeathEvent, EventData, GameEndInfo, GameEvent, GameStartInfo, KillEvent, MatchInfo,
|
||||
ObjectiveEvent, ObjectiveType,
|
||||
};
|
||||
Reference in New Issue
Block a user