mirror of
https://github.com/phranck/TUIkit.git
synced 2026-05-21 09:50:35 +00:00
d3f8ff60f3
- Add LICENSE file (MIT) - Update 141 Swift file headers: CC BY-NC-SA 4.0 → License: MIT
25 lines
456 B
Swift
25 lines
456 B
Swift
// 🖥️ TUIKit — Terminal UI Kit for Swift
|
||
// main.swift
|
||
//
|
||
// Created by LAYERED.work
|
||
// License: MIT
|
||
// This app demonstrates TUIkit capabilities through various demo pages.
|
||
// Use the menu to navigate between demos.
|
||
//
|
||
|
||
import TUIkit
|
||
|
||
// MARK: - Main App
|
||
|
||
/// The main example application.
|
||
struct ExampleApp: App {
|
||
var body: some Scene {
|
||
WindowGroup {
|
||
ContentView()
|
||
}
|
||
}
|
||
}
|
||
|
||
// Run the app
|
||
ExampleApp.main()
|