14 lines
225 B
Swift
14 lines
225 B
Swift
//
|
|
// Int+Ports.swift
|
|
// APIService
|
|
//
|
|
// Created by Javier Cicchelli on 04/12/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
extension Int {
|
|
enum Ports {
|
|
static let `default` = 8080
|
|
}
|
|
}
|