15 lines
183 B
Swift
15 lines
183 B
Swift
//
|
|
// LocalUserConfig.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-06-15.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
struct LocalUserConfig: Codable {
|
|
let relays: [RelayDescriptor]
|
|
}
|
|
|