Skip to content

Commit 7ff5d79

Browse files
committed
add place view
1 parent 6adf6c6 commit 7ff5d79

File tree

7 files changed

+82
-1
lines changed

7 files changed

+82
-1
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by gridscale on 2020/04/25.
6+
//
7+
8+
import Foundation
9+
10+
public class Command {
11+
var cid : String
12+
public init(id :String) {
13+
cid = id
14+
}
15+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by gridscale on 2020/04/25.
6+
//
7+
8+
import Foundation
9+
10+
public enum CommandID {
11+
case STOMP
12+
case CONNECT
13+
case DISCONNECT
14+
case CONNECTED
15+
case SUBSCRIBE
16+
case UNSUBSCRIBE
17+
case SEND
18+
case ACK
19+
case NACK
20+
case ABORT
21+
case BEGIN
22+
case COMMIT
23+
case MESSAGE
24+
case RECEIPT
25+
case ERROR
26+
27+
}

Sources/StompClientKit/Frame.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by gridscale on 2020/04/25.
6+
//
7+
8+
import Foundation
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by gridscale on 2020/04/25.
6+
//
7+
8+
import Foundation
9+
10+
public class StompClient {
11+
12+
public init() {
13+
14+
}
15+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
struct StompClientKit {
2-
var text = "Hello, World!"
2+
var text = "Hello stomp!"
33
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by gridscale on 2020/04/25.
6+
//
7+
8+
import Foundation
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//
2+
// File.swift
3+
//
4+
//
5+
// Created by gridscale on 2020/04/25.
6+
//
7+
8+
import Foundation

0 commit comments

Comments
 (0)