mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-23 19:20:24 +08:00
10 lines
235 B
Go
10 lines
235 B
Go
|
|
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
||
|
|
|
||
|
|
package ossconfigs
|
||
|
|
|
||
|
|
import "strings"
|
||
|
|
|
||
|
|
func IsOSSProtocol(protocol string) bool {
|
||
|
|
return strings.HasPrefix(protocol, "oss:")
|
||
|
|
}
|