diff options
| author | Bobby <[email protected]> | 2025-03-11 01:14:10 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-03-11 01:14:10 +0530 |
| commit | 9085fa19a9972f0c31f0ba92505c77a52acf3d66 (patch) | |
| tree | b7f4f57e95fb0467014d20a8ce227a062c500a8f /services/stream/urls.py | |
| parent | f5ef9d42ebe7b2be932b35db7c5d801e9cfeb2c1 (diff) | |
| download | thatcomputerscientist-dev.tar.xz thatcomputerscientist-dev.zip | |
separate video/tracks in anime stream service and encodedev
Diffstat (limited to 'services/stream/urls.py')
| -rw-r--r-- | services/stream/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/stream/urls.py b/services/stream/urls.py index aaedb926..7aa9ea5e 100644 --- a/services/stream/urls.py +++ b/services/stream/urls.py @@ -6,5 +6,6 @@ app_name = "stream" urlpatterns = [ path("random-song", views.random_song, name="random_song"), path("song/<int:song_id>", views.stream_song, name="stream_song"), - path("anime/", views.anime_stream, name="anime_stream"), + path("anime", views.anime_stream, name="anime_stream"), + path("track", views.track_stream, name="track_stream"), ] |
