2020-07-13 03:09:37 +00:00
|
|
|
//
|
|
|
|
// GeminiResponseHeader.swift
|
|
|
|
// Gemini
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 7/12/20.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2020-07-13 22:22:36 +00:00
|
|
|
public struct GeminiResponseHeader {
|
|
|
|
public let status: GeminiResponse.StatusCode
|
|
|
|
public let meta: String
|
2020-07-13 03:09:37 +00:00
|
|
|
}
|