mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 00:36:38 +00:00
12 lines
150 B
Go
12 lines
150 B
Go
package installer
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func (u *Installer) LogFiles() []string {
|
|
return []string{
|
|
filepath.Join(u.tempDir, LogFile),
|
|
}
|
|
}
|