mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 13:50:32 +05:30
11 lines
357 B
Swift
11 lines
357 B
Swift
import Foundation
|
|
|
|
extension Instance {
|
|
static var fixture: Instance {
|
|
Instance(name: "Home", url: "https://invidious.home.net", accounts: [
|
|
.init(id: UUID(), name: "Evelyn", url: "https://invidious.home.net", sid: "abc"),
|
|
.init(id: UUID(), name: "Jake", url: "https://invidious.home.net", sid: "xyz")
|
|
])
|
|
}
|
|
}
|