Add language identification swiftui demo (#729)

This commit is contained in:
yujinqiu
2024-04-01 20:34:14 +08:00
committed by GitHub
parent fabd30e3bb
commit f8832cb5f2
16 changed files with 1057 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// SherpaOnnxLangIDApp.swift
// SherpaOnnxLangID
//
// Created by knight on 2024/4/1.
//
import SwiftUI
@main
struct SherpaOnnxLangIDApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}