mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
17 lines
438 B
Dart
17 lines
438 B
Dart
library connect;
|
|
|
|
import 'dart:async';
|
|
import 'dart:convert';
|
|
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:spotify/spotify.dart';
|
|
import 'package:spotube/extensions/track.dart';
|
|
import 'package:spotube/provider/proxy_playlist/proxy_playlist.dart';
|
|
import 'package:spotube/services/audio_player/loop_mode.dart';
|
|
|
|
part 'connect.freezed.dart';
|
|
part 'connect.g.dart';
|
|
|
|
part 'ws_event.dart';
|
|
part 'load.dart';
|