// // ChatViewModel.swift // AcaMate // // Created by TAnine on 2/17/25. // import SwiftUI class ChatViewModel: ObservableObject { private let appVM: AppViewModel @Published var messages: [ChatMesage] = [] init(_ appVM: AppViewModel) { self.appVM = appVM } }