mirror of
https://github.com/vlang/v.git
synced 2025-09-08 14:51:53 -04:00
10 lines
129 B
V
10 lines
129 B
V
module auth
|
|
|
|
pub struct Request {
|
|
pub:
|
|
client_id string
|
|
client_secret string
|
|
code string
|
|
state string
|
|
}
|