28 lines
424 B
Swift
28 lines
424 B
Swift
//
|
|
// 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<Self> {
|
|
EmptyReducer()
|
|
}
|
|
}
|