mirror of
https://github.com/aler9/gortsplib
synced 2025-09-27 03:25:52 +08:00
13 lines
272 B
Go
13 lines
272 B
Go
package url
|
|
|
|
import (
|
|
"github.com/bluenviron/gortsplib/v4/pkg/base"
|
|
)
|
|
|
|
// PathSplitQuery splits a path from a query.
|
|
//
|
|
// Deprecated: replaced by base.PathSplitQuery
|
|
func PathSplitQuery(pathAndQuery string) (string, string) {
|
|
return base.PathSplitQuery(pathAndQuery)
|
|
}
|