This commit is contained in:
parent
54233b6dd5
commit
2595c183c3
1 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,4 @@
|
|||
import gleam/io
|
||||
import oas/generator
|
||||
import snag
|
||||
|
||||
pub fn main() {
|
||||
case
|
||||
|
@ -12,6 +10,9 @@ pub fn main() {
|
|||
)
|
||||
{
|
||||
Ok(_) -> Nil
|
||||
Error(reason) -> io.print(snag.pretty_print(reason))
|
||||
Error(reason) -> {
|
||||
echo reason
|
||||
Nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue