mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-01-27 15:25:01 -08:00
9 lines
239 B
Protocol Buffer
9 lines
239 B
Protocol Buffer
syntax = "proto2";
|
|
/* XXX: This is a first approximation of login response. Not looked into or verified. */
|
|
import "per-session-info.proto";
|
|
|
|
message LoginResponse {
|
|
required string session_state = 1;
|
|
required PerSessionInfo info = 2;
|
|
}
|