1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 02:54:31 +03:00
vimr/SwiftNeoVim/NeoVimService.swift
Tae Won Ha fa0ef63611
Add SwiftNeoVim framework target
- This target includes the XPC-service and will be included in the main
  app
2016-06-05 17:46:05 +02:00

18 lines
289 B
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Foundation
public class NeoVimService {
public private(set) var neoVims: [NeoVim] = []
public func newNeoVim() -> NeoVim {
let neoVim = NeoVim()
self.neoVims.append(neoVim);
return neoVim
}
}