mirror of
https://github.com/yattee/yattee.git
synced 2025-01-09 22:37:09 +00:00
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")
|
||
|
])
|
||
|
}
|
||
|
}
|