├── .gitignore ├── ChatBot.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── rene.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── rene.xcuserdatad │ └── xcschemes │ ├── ChatBot.xcscheme │ └── xcschememanagement.plist ├── ChatBot.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── rene.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ChatBot ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Bot.swift ├── BotResponses.swift ├── ChatService.swift ├── Constants.swift ├── GetMessageResponseData.swift ├── Info.plist ├── Message.swift ├── MessageService.swift ├── ResponseEnum.swift ├── RestAPIManager.swift ├── RestAPIRequestService.swift ├── UserDefaultsUtil.swift └── ViewController.swift ├── ChatBotTests ├── ChatBotTests.swift └── Info.plist ├── ChatBotUITests ├── ChatBotUITests.swift └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ └── Validation.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── rene.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── Pods-ChatBot.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ └── Pods-ChatBot │ ├── Info.plist │ ├── Pods-ChatBot-acknowledgements.markdown │ ├── Pods-ChatBot-acknowledgements.plist │ ├── Pods-ChatBot-dummy.m │ ├── Pods-ChatBot-frameworks.sh │ ├── Pods-ChatBot-resources.sh │ ├── Pods-ChatBot-umbrella.h │ ├── Pods-ChatBot.debug.xcconfig │ ├── Pods-ChatBot.modulemap │ └── Pods-ChatBot.release.xcconfig └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatBot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatBot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatBot.xcodeproj/project.xcworkspace/xcuserdata/rene.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcodeproj/project.xcworkspace/xcuserdata/rene.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChatBot.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/ChatBot.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/ChatBot.xcscheme -------------------------------------------------------------------------------- /ChatBot.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ChatBot.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatBot.xcworkspace/xcuserdata/rene.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcworkspace/xcuserdata/rene.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChatBot.xcworkspace/xcuserdata/rene.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot.xcworkspace/xcuserdata/rene.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ChatBot/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/AppDelegate.swift -------------------------------------------------------------------------------- /ChatBot/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChatBot/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ChatBot/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ChatBot/Bot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Bot.swift -------------------------------------------------------------------------------- /ChatBot/BotResponses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/BotResponses.swift -------------------------------------------------------------------------------- /ChatBot/ChatService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/ChatService.swift -------------------------------------------------------------------------------- /ChatBot/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Constants.swift -------------------------------------------------------------------------------- /ChatBot/GetMessageResponseData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/GetMessageResponseData.swift -------------------------------------------------------------------------------- /ChatBot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Info.plist -------------------------------------------------------------------------------- /ChatBot/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/Message.swift -------------------------------------------------------------------------------- /ChatBot/MessageService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/MessageService.swift -------------------------------------------------------------------------------- /ChatBot/ResponseEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/ResponseEnum.swift -------------------------------------------------------------------------------- /ChatBot/RestAPIManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/RestAPIManager.swift -------------------------------------------------------------------------------- /ChatBot/RestAPIRequestService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/RestAPIRequestService.swift -------------------------------------------------------------------------------- /ChatBot/UserDefaultsUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/UserDefaultsUtil.swift -------------------------------------------------------------------------------- /ChatBot/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBot/ViewController.swift -------------------------------------------------------------------------------- /ChatBotTests/ChatBotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBotTests/ChatBotTests.swift -------------------------------------------------------------------------------- /ChatBotTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBotTests/Info.plist -------------------------------------------------------------------------------- /ChatBotUITests/ChatBotUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBotUITests/ChatBotUITests.swift -------------------------------------------------------------------------------- /ChatBotUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/ChatBotUITests/Info.plist -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Pods.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/Pods-ChatBot.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Pods.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/Pods-ChatBot.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Pods.xcodeproj/xcuserdata/rene.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/Pods/Target Support Files/Pods-ChatBot/Pods-ChatBot.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reneargento/swift-chat-bot/HEAD/README.md --------------------------------------------------------------------------------