iSubFormatter.go 277 B

123456789
  1. package ifaces
  2. import "github.com/allanpk716/ChineseSubFinder/internal/types"
  3. type ISubFormatter interface {
  4. IsMatchThisFormat(subName string) bool
  5. GenerateMixSubName(videoFileName, subExt string, subLang types.Language, extraSubPreName string) (string, string, string)
  6. }