mirror of
https://github.com/status-im/status-go.git
synced 2025-02-09 13:24:49 +00:00
* Commit initial change for settimeout/setinterval * Add initial tests for jail setTimeout/setInterval * Add ottoext dependency * Add fetch jail test with function * Add dependencies of fetch from ottoext * Refactor with regards to PR review * Refactor with regards to PR review * Fix syntax errors * Fix missing return statement
10 lines
115 B
Go
10 lines
115 B
Go
//+build go1.8,!openbsd
|
|
|
|
package osext
|
|
|
|
import "os"
|
|
|
|
func executable() (string, error) {
|
|
return os.Executable()
|
|
}
|