mirror of
https://github.com/taigrr/wtf
synced 2026-03-22 15:52:17 -07:00
9 lines
161 B
Go
9 lines
161 B
Go
package utils
|
|
|
|
var OpenFileUtil = "open"
|
|
|
|
// Init initializes global settings in the wtf package
|
|
func Init(openFileUtil string) {
|
|
OpenFileUtil = openFileUtil
|
|
}
|