32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
|
|
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
|