11 lines
391 B
Dart
11 lines
391 B
Dart
class AppConstants {
|
|
static const baseUrl = 'https://api.chepuhagram.ru';
|
|
static const wsUrl = 'wss://api.chepuhagram.ru';
|
|
|
|
// TURN Server Configuration
|
|
static const turnUrl = 'turns:turn.chepuhagram.ru:5349';
|
|
static const stunUrl = 'stuns:turn.chepuhagram.ru:5349';
|
|
static const turnUsername = 'chepuha_user';
|
|
static const turnCredential = 'byybg3456bFYTfY8ytFb323yTfYBtF';
|
|
}
|