Files
herolib/lib/clients/livekit/client.v
2025-01-31 15:39:44 +03:00

10 lines
205 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]
}