8 lines
163 B
Swift
8 lines
163 B
Swift
import Foundation
|
|
|
|
enum PlaybookClientError: Error {
|
|
case projectDirectoryNotFound
|
|
case templateDirectoryNotFound
|
|
case templateDirectoryOrRepoNotSpecified
|
|
}
|