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 {
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 {