You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
278 B

3 years ago
  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package rpc
  3. func keepValue(parameterValue interface{}, _ string) (interface{}, error) {
  4. return parameterValue, nil
  5. }
  6. type ValueParser func(interface{}, string) (interface{}, error)