├── .gitignore ├── .travis.yml ├── Endpoint.podspec ├── Endpoint.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Endpoint.xcscheme ├── Endpoint.xcworkspace └── contents.xcworkspacedata ├── EndpointTests ├── EndpointTests.swift └── Info.plist ├── LICENSE ├── Podfile ├── README.md └── Sources ├── Endpoint.h ├── Endpoint.swift └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/.travis.yml -------------------------------------------------------------------------------- /Endpoint.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Endpoint.podspec -------------------------------------------------------------------------------- /Endpoint.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Endpoint.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Endpoint.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Endpoint.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Endpoint.xcodeproj/xcshareddata/xcschemes/Endpoint.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Endpoint.xcodeproj/xcshareddata/xcschemes/Endpoint.xcscheme -------------------------------------------------------------------------------- /Endpoint.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Endpoint.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EndpointTests/EndpointTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/EndpointTests/EndpointTests.swift -------------------------------------------------------------------------------- /EndpointTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/EndpointTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Sources/Endpoint.h -------------------------------------------------------------------------------- /Sources/Endpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Sources/Endpoint.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Endpoint/HEAD/Sources/Info.plist --------------------------------------------------------------------------------