v2 / vlib / veb / auth / request.v
9 lines · 8 sloc · 129 bytes · 1b5f90551259c97ea38b67382521f6f817972e9e
Raw
1module auth
2
3pub struct Request {
4pub:
5 client_id string
6 client_secret string
7 code string
8 state string
9}
10