mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 05:01:10 -05:00
9 lines
178 B
Go
9 lines
178 B
Go
package godata
|
|
|
|
import "context"
|
|
|
|
func ParseApplyString(ctx context.Context, apply string) (*GoDataApplyQuery, error) {
|
|
result := GoDataApplyQuery(apply)
|
|
return &result, nil
|
|
}
|