Lightning/Sources/HTTP/Serializable.swift

13 lines
178 B
Swift

//
// Serializable.swift
// Edge
//
// Created by Tyler Fleming Cloutier on 7/1/16.
//
//
import Foundation
public protocol Serializable {
var serialized: Data { get }
}