mirror of
https://github.com/fatedier/frp.git
synced 2025-01-24 18:06:21 +07: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)
|
|
}
|