Files
mlx-swift-examples/Applications/MNISTTrainer/MNISTTrainerApp.swift
2024-03-01 15:55:36 -08:00

13 lines
178 B
Swift

// Copyright © 2024 Apple Inc.
import SwiftUI
@main
struct MNISTTrainerApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}