mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-15 23:25:48 +01:00
12 lines
178 B
Swift
12 lines
178 B
Swift
//
|
|
// ExportFormat.swift
|
|
// Buzz
|
|
//
|
|
// Created by Chidi Williams on 20/02/2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum ExportFormat: String, CaseIterable {
|
|
case CSV, SRT, TXT, VTT
|
|
}
|