You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
213 B
Go

package main
type AuthRequest struct {
Client *AuthRequestClient
Instance string
ID string
}
func (r *AuthRequest) SetId(ID string) error {
r.ID = ID
err := r.Client.PropagateID(ID)
return err
}