* Commit after creating the project * Add sherpa-onnx related files * copy and modify files from sherpa-ncnn * add app icon
18 lines
228 B
Swift
18 lines
228 B
Swift
//
|
|
// SherpaOnnxApp.swift
|
|
// SherpaOnnx
|
|
//
|
|
// Created by fangjun on 2023/4/5.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SherpaOnnxApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|