Files
herolib/lib/clients/livekit/client.v
2025-01-22 23:55:18 +00:00

10 lines
206 B
V

module livekit
// App struct with `livekit.Client`, API keys, and other shared data
pub struct Client {
pub:
url string @[required]
api_key string @[required]
api_secret string @[required]
}