mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
10 lines
106 B
Go
10 lines
106 B
Go
//+build go1.8
|
|
|
|
package osext
|
|
|
|
import "os"
|
|
|
|
func executable() (string, error) {
|
|
return os.Executable()
|
|
}
|