GeminiProtocol
Network.Framework
and URLSession
support for the Gemini Protocol
Usage
URLSession
Calling URLProtocol.registerClass(GeminiProtocol.self)
will cause your normal URLSession
code to "Just Work" with gemini://
URLs. The URLResponse
you receive will be a GeminiURLResponse
with statusCode
and meta
properties.
Code
GeminiProtocol.swift
contains the implementation of theURLSession
support.GeminiNetwork.swift
is aNetwork.framework
implementation of a Gemini client.