mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 07:29:56 +08:00
12 lines
168 B
Go
12 lines
168 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/wailsapp/wails/v3/internal/doctor"
|
|
)
|
|
|
|
type DoctorOptions struct{}
|
|
|
|
func Doctor(_ *DoctorOptions) error {
|
|
return doctor.Run()
|
|
}
|