0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-14 20:39:36 +03:00

Add TOML Support (#98)

This commit is contained in:
秋のかえで
2020-12-25 03:11:32 +08:00
committed by GitHub
parent 09f9d03fb6
commit f073456ac0
7 changed files with 96 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package toml
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}