15 lines
260 B
Swift
15 lines
260 B
Swift
//
|
|||
// HTTPMethod.swift
|
|||
// NotificationService
|
|||
//
|
|||
// Created by Djorkaeff Alexandre Vilela Pereira on 9/16/20.
|
|||
// Copyright © 2020 Rocket.Chat. All rights reserved.
|
|||
//
|
|||
|
|||
import Foundation
|
|||
|
|||
enum HTTPMethod: String {
|
|||
case get = "GET"
|
|||
case post = "POST"
|
|||
}
|