├── .gitignore ├── HLSion.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── HLSion.xcscheme ├── HLSion.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── HLSionExample ├── HLSionExample.xcodeproj │ └── project.pbxproj └── HLSionExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Cell.swift │ ├── Info.plist │ └── ViewController.swift ├── LICENCE ├── Package.swift ├── README.md └── Sources ├── AssetStore.swift ├── HLSion.h ├── HLSion.swift ├── Info.plist └── SessionManager.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/.gitignore -------------------------------------------------------------------------------- /HLSion.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSion.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HLSion.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSion.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HLSion.xcodeproj/xcshareddata/xcschemes/HLSion.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSion.xcodeproj/xcshareddata/xcschemes/HLSion.xcscheme -------------------------------------------------------------------------------- /HLSion.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSion.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HLSion.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSion.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HLSionExample/HLSionExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/AppDelegate.swift -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/Cell.swift -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/Info.plist -------------------------------------------------------------------------------- /HLSionExample/HLSionExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/HLSionExample/HLSionExample/ViewController.swift -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/LICENCE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AssetStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/Sources/AssetStore.swift -------------------------------------------------------------------------------- /Sources/HLSion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/Sources/HLSion.h -------------------------------------------------------------------------------- /Sources/HLSion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/Sources/HLSion.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-plus/HLSion/HEAD/Sources/SessionManager.swift --------------------------------------------------------------------------------