blob: 3d1f3e3b2c90f4146df2afc0e45117597b0b6f63 [file] [log] [blame]
package com.alibaba.dubbo.examples.generic.api;
public interface IService <P, V> {
V get(P params);
}