// // RootFeature.swift // Root // import Foundation import ComposableArchitecture @Reducer public struct RootFeature { @ObservableState public struct State { public var baseURL: String? public init() { } } public enum Action { // Add your actions here } public init() { } public var body: some ReducerOf { EmptyReducer() } }