5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 07:56:16 +00:00

15 lines
188 B
Go
Raw Normal View History

2022-06-11 23:07:42 +02:00
package valid
var URIs = [][]byte{
[]byte("http://"),
[]byte("https://"),
[]byte("ftp://"),
[]byte("mailto:"),
}
var Paths = [][]byte{
[]byte("/"),
[]byte("./"),
[]byte("../"),
}