mirror of
https://github.com/fatedier/frp.git
synced 2025-05-09 16:18:27 +00:00
10 lines
156 B
Go
10 lines
156 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
)
|
||
|
|
||
|
func GenerateConfigFile(path string, content string) error {
|
||
|
return ioutil.WriteFile(path, []byte(content), 0666)
|
||
|
}
|