From d047e5d48ac5dec23d7dc338486ca04ea3238298 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 26 Feb 2024 22:30:08 +0100 Subject: [PATCH] Format code --- transcoder/src/filestream.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/transcoder/src/filestream.go b/transcoder/src/filestream.go index c58aa2be..8793a2f8 100644 --- a/transcoder/src/filestream.go +++ b/transcoder/src/filestream.go @@ -8,14 +8,14 @@ import ( ) type FileStream struct { - ready sync.WaitGroup - err error - Path string - Out string - Keyframes *Keyframe - Info *MediaInfo - videos CMap[Quality, *VideoStream] - audios CMap[int32, *AudioStream] + ready sync.WaitGroup + err error + Path string + Out string + Keyframes *Keyframe + Info *MediaInfo + videos CMap[Quality, *VideoStream] + audios CMap[int32, *AudioStream] } func NewFileStream(path string, sha string, route string) *FileStream {