Format code

This commit is contained in:
Zoe Roux 2024-02-26 22:30:08 +01:00
parent 7baa586738
commit d047e5d48a

View File

@ -8,14 +8,14 @@ import (
) )
type FileStream struct { type FileStream struct {
ready sync.WaitGroup ready sync.WaitGroup
err error err error
Path string Path string
Out string Out string
Keyframes *Keyframe Keyframes *Keyframe
Info *MediaInfo Info *MediaInfo
videos CMap[Quality, *VideoStream] videos CMap[Quality, *VideoStream]
audios CMap[int32, *AudioStream] audios CMap[int32, *AudioStream]
} }
func NewFileStream(path string, sha string, route string) *FileStream { func NewFileStream(path string, sha string, route string) *FileStream {