You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//
|
|
// HistoricBetViewModel.swift
|
|
// AllIn
|
|
//
|
|
// Created by Emre on 16/01/2024.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
import DependencyInjection
|
|
import Model
|
|
|
|
class HistoricBetViewModel: ObservableObject {
|
|
|
|
@Inject var manager: Manager
|
|
|
|
init() {
|
|
getItems()
|
|
}
|
|
|
|
func getItems() {
|
|
|
|
}
|
|
}
|