mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
16 lines
384 B
Dart
16 lines
384 B
Dart
library connect;
|
|
|
|
import 'dart:async';
|
|
import 'dart:convert';
|
|
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:media_kit/media_kit.dart' hide Track;
|
|
import 'package:spotify/spotify.dart' hide Playlist;
|
|
import 'package:spotube/provider/audio_player/state.dart';
|
|
|
|
part 'connect.freezed.dart';
|
|
part 'connect.g.dart';
|
|
|
|
part 'ws_event.dart';
|
|
part 'load.dart';
|