mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-17 02:52:01 +08:00
14 lines
256 B
Swift
14 lines
256 B
Swift
//
|
|
// SquawkViewDelegate.swift
|
|
// Squawk
|
|
//
|
|
// Created by Ryan Nystrom on 7/14/18.
|
|
// Copyright © 2018 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
internal protocol SquawkViewDelegate: class {
|
|
func didTapInfo(for view: SquawkView)
|
|
}
|