forked from shadowfacts/Tusker
19 lines
301 B
Swift
19 lines
301 B
Swift
|
//
|
||
|
// WellKnown.swift
|
||
|
// Pachyderm
|
||
|
//
|
||
|
// Created by Shadowfacts on 1/22/22.
|
||
|
// Copyright © 2022 Shadowfacts. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct WellKnown: Decodable {
|
||
|
let links: [Link]
|
||
|
|
||
|
struct Link: Decodable {
|
||
|
let href: String
|
||
|
let rel: String
|
||
|
}
|
||
|
}
|