Point to validation example

This commit is contained in:
Vincent Prouillet 2019-11-14 20:32:03 +01:00
parent 3fe0bc1f83
commit b35719b555
1 changed files with 2 additions and 0 deletions

View File

@ -158,3 +158,5 @@ let mut validation = Validation::default();
validation.set_audience(&"Me"); // string
validation.set_audience(&["Me", "You"]); // array of strings
```
Look at `examples/validation.rs` for a full working example.