blob: 861dfb973788b01aa572acb5cebea40abc8ad590 (
plain) (
blame)
1
2
3
4
5
6
|
#include "client_status.h"
template <>
void Out<NTvmAuth::TClientStatus>(IOutputStream& out, const NTvmAuth::TClientStatus& s) {
out << s.GetCode() << ": " << s.GetLastError();
}
|