Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
Fix imports for SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
pvzig committed Jul 18, 2016
1 parent 1e304f1 commit e5a4a67
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SlackKit/Sources/Client+EventHandling.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation

internal extension Client {

//MARK: - Pong
Expand Down
1 change: 1 addition & 0 deletions SlackKit/Sources/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation
import Starscream

public final class Client: WebSocketDelegate {
Expand Down
2 changes: 2 additions & 0 deletions SlackKit/Sources/ClientOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation

public struct ClientOptions {

let simpleLatest: Bool?
Expand Down
3 changes: 3 additions & 0 deletions SlackKit/Sources/History.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation

public struct History {

internal(set) public var latest: NSDate?
internal(set) public var messages = [Message]()
public let hasMore: Bool?
Expand Down
2 changes: 2 additions & 0 deletions SlackKit/Sources/IncomingWebhook.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation

public struct IncomingWebhook {

public let url: String?
Expand Down
1 change: 1 addition & 0 deletions SlackKit/Sources/OAuthServer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation
import Swifter

internal protocol OAuthDelegate {
Expand Down
1 change: 1 addition & 0 deletions SlackKit/Sources/Server.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation
import Swifter

internal enum Reply {
Expand Down
2 changes: 2 additions & 0 deletions SlackKit/Sources/SlackKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import Foundation

public final class SlackKit: OAuthDelegate {

internal(set) public var oauth: OAuthServer?
Expand Down

0 comments on commit e5a4a67

Please sign in to comment.