mirror of
https://github.com/fatedier/frp.git
synced 2024-12-04 19:01:37 +08: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)
|
|
}
|