Neil Alexander 2020-09-02 16:52:06 +01:00 committed by GitHub
parent 3b0774805c
commit f06637435b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -41,15 +41,13 @@ type flows struct {
}
type flow struct {
Type string `json:"type"`
Stages []string `json:"stages"`
Type string `json:"type"`
}
func passwordLogin() flows {
f := flows{}
s := flow{
Type: "m.login.password",
Stages: []string{"m.login.password"},
Type: "m.login.password",
}
f.Flows = append(f.Flows, s)
return f