This repository has been archived on 2021-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
statusboard/Sources/App/JSONDecode.swift

8 lines
154 B
Swift
Raw Normal View History

2020-11-11 22:49:55 +00:00
import Foundation
import Vapor
struct Config: Codable {
let title: String
2020-11-12 21:23:25 +00:00
let passwordHash: String
2020-11-11 22:49:55 +00:00
let services: [String:[[String:String]]]
}