9 lines
184 B
Swift
9 lines
184 B
Swift
import Foundation
|
|
|
|
enum PlaybookClientError: Error {
|
|
case encodingError
|
|
case projectDirectoryNotFound
|
|
case templateDirectoryNotFound
|
|
case templateDirectoryOrRepoNotSpecified
|
|
}
|