diff --git a/ProjectClock/Net.swift b/ProjectClock/Net.swift index 42d050f..ede89db 100644 --- a/ProjectClock/Net.swift +++ b/ProjectClock/Net.swift @@ -45,6 +45,28 @@ class APIs */ static let delete = API(loc: "/user/delete") + /** + Upload curent config to the cloud. + + ## Parameters + - config: The config json + + ## Returns + Success or error + */ + static let uploadConfig = API(loc: "/backup/upload") + + /** + Download the config from the cloud. + + ## Parameters + None + + ## Returns + Config Json + */ + static let downloadConfig = API(loc: "/backup/download") + private init() {} } diff --git a/ProjectClock/clock.png b/ProjectClock/clock.png new file mode 100644 index 0000000..1d9651b Binary files /dev/null and b/ProjectClock/clock.png differ