Subversion Repositories SmartDukaan

Rev

Rev 778 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 778 Rev 895
Line 1... Line 1...
1
namespace java in.shop2020.test
1
namespace java in.shop2020.test
2
namespace py shop2020.thriftpy.test
2
namespace py shop2020.thriftpy.test
3
 
3
 
-
 
4
struct Address{
-
 
5
	1:i64 addressId,
-
 
6
	2:string address
-
 
7
}
4
 
8
 
5
service TestService{
9
service TestService{
6
	void sayHello(1:string message),
10
	void sayHello(1:string message),
7
	string getUser(1:i64 id),
11
	string getUser(1:i64 id),
-
 
12
	i64 getAddressId(),
-
 
13
	Address getAddress(),
8
	void createUser(1:string name),
14
	void createUser(1:string name),
9
	void closeSession()
15
	void closeSession()
10
}
16
}
11
 
17