mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-07-16 21:09:44 +03:00
13 lines
184 B
Go
13 lines
184 B
Go
package postgresql
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
func marshalStringSlice(values []string) ([]byte, error) {
|
|
if values == nil {
|
|
values = []string{}
|
|
}
|
|
return json.Marshal(values)
|
|
}
|