This PR contains the work done to define a `Libraries` package that includes its `Foundation` library in it, and integrated the former to the `Feed` framework and `App` targets in the project as well. Reviewed-on: #3 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
19 lines
330 B
Swift
19 lines
330 B
Swift
//
|
|
// String+Constants.swift
|
|
// ReviewsFoundation
|
|
//
|
|
// Created by Javier Cicchelli on 16/03/2024.
|
|
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension String {
|
|
|
|
// MARK: Constants
|
|
|
|
/// A representation of an empty string.
|
|
static let empty: String = ""
|
|
|
|
}
|