18 lines
305 B
Swift
18 lines
305 B
Swift
//
|
|
// FormatLogViewController.swift
|
|
// Note
|
|
//
|
|
// Created by fish on 2026/7/12.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class FormatLogViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
title = "格式化日志"
|
|
view.backgroundColor = .systemBackground
|
|
}
|
|
}
|