mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
9 lines
129 B
V
9 lines
129 B
V
module auth
|
|
|
|
pub struct Request {
|
|
pub:
|
|
client_id string
|
|
client_secret string
|
|
code string
|
|
state string
|
|
}
|