19 lines
246 B
Swift
19 lines
246 B
Swift
//
|
|
// dudujiApp.swift
|
|
// duduji
|
|
//
|
|
// Created by ching on 2023/5/3.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct dudujiApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
// AccountListView()
|
|
}
|
|
}
|
|
}
|