Adding language hint for markdown examples.

This commit is contained in:
Justin Judd 2016-01-11 10:03:40 +09:00
parent 395d932f93
commit 6ad513fa31
1 changed files with 79 additions and 78 deletions

View File

@ -7,7 +7,7 @@ Go library for generating and using One Time Passwords. Supports both HOTP ([RFC
## Examples
### OTP Server
```go
import (
"dev.justinjudd.org/justin/otp"
)
@ -59,11 +59,11 @@ Go library for generating and using One Time Passwords. Supports both HOTP ([RFC
return success, nil
}
```
### OTP Client
```go
import (
"dev.justinjudd.org/justin/otp"
)
@ -106,3 +106,4 @@ Go library for generating and using One Time Passwords. Supports both HOTP ([RFC
return code, nil
}
```