mirror of
https://github.com/tappollo/makata.git
synced 2026-01-12 17:03:04 +08:00
15 lines
219 B
Swift
15 lines
219 B
Swift
// protocol-hookable.swift
|
|
//
|
|
// Code Copyright Buslo Collective
|
|
// Created 2/3/23
|
|
|
|
import Foundation
|
|
|
|
public protocol Hookable: AnyObject {
|
|
associatedtype Hook
|
|
|
|
var client: Hook { get }
|
|
|
|
init(hook: Hook)
|
|
}
|