removed extra file

This commit is contained in:
a. fox 2024-02-29 21:44:40 -05:00
parent d8c47bd905
commit 54f71ce23f
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
// CustomTypes.swift
import ArgumentParser
enum MediaType: String, ExpressibleByArgument {
case book, movie, season, series, playlist, album, artist
}
extension MediaType: CustomStringConvertible {
var description: String {
return rawValue.capitalized
}
}