7 lines
209 B
PowerShell
7 lines
209 B
PowerShell
|
|
$ErrorActionPreference = 'Stop'
|
||
|
|
|
||
|
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||
|
|
Set-Location (Join-Path $ScriptDir 'backend')
|
||
|
|
|
||
|
|
swag init -g ./cmd/server/main.go --parseDependency --parseInternal
|