mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-27 20:04:35 +00:00
11 lines
146 B
Swift
11 lines
146 B
Swift
|
import SwiftUI
|
||
|
|
||
|
@main
|
||
|
struct llama_swiftuiApp: App {
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|
||
|
}
|