17 lines
294 B
Swift
17 lines
294 B
Swift
//
|
|
// Bundle+Constants.swift
|
|
// ReviewsFeed
|
|
//
|
|
// Created by Javier Cicchelli on 20/03/2024.
|
|
// Copyright © 2024 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Bundle {
|
|
|
|
// MARK: Constants
|
|
static let module = Bundle(for: FeedItemViewController.self)
|
|
|
|
}
|