mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
17 lines
268 B
Swift
17 lines
268 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
public class NeoVim {
|
|
|
|
// private let agent: NeoVimAgent
|
|
|
|
public init() {
|
|
// let uuid = NSUUID().UUIDString
|
|
// self.agent = NeoVimAgent(uuid: uuid, uiBridge: nil)
|
|
}
|
|
}
|