初始化

This commit is contained in:
李琦
2026-08-11 19:07:05 +08:00
commit d2aeb13a09
94 changed files with 8704 additions and 0 deletions

31
models.go Normal file
View File

@@ -0,0 +1,31 @@
package main
import "view/model"
// 根包保留别名仅用于维持 Wails 公开 API 和旧测试兼容;真实模型集中在 model 包。
type Project = model.Project
type ProjectInput = model.ProjectInput
type ProjectGroup = model.ProjectGroup
type ProjectStats = model.ProjectStats
type LanguageStat = model.LanguageStat
type FileEntry = model.FileEntry
type StructureStats = model.StructureStats
type FolderStat = model.FolderStat
type ExtensionStat = model.ExtensionStat
type GitCommit = model.GitCommit
type GitRef = model.GitRef
type Contributor = model.Contributor
type HeatDay = model.HeatDay
type GitStats = model.GitStats
type GitDiagnostics = model.GitDiagnostics
type ProjectInsights = model.ProjectInsights
type InsightSummary = model.InsightSummary
type InsightIssue = model.InsightIssue
type GitFileChange = model.GitFileChange
type GitCommitDetail = model.GitCommitDetail
type CheckoutResult = model.CheckoutResult
type ExclusionRule = model.ExclusionRule
type LogEntry = model.LogEntry
type AppSettings = model.AppSettings
type Dashboard = model.Dashboard
type TaskEvent = model.TaskEvent