diff options
author | Nikolas Sepos <nikolas.sepos@gmail.com> | 2018-12-09 00:46:26 +0100 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2018-12-09 00:08:43 +0000 |
commit | 72ea1be3b943ee1eed481569f600b976f4b40e06 (patch) | |
tree | 9540d345b9fdbc0d227e3cbf4d1f0b777fda537a /README.md | |
parent | 4dabb19b0ae8c2c0287807d4454eedee46d39a2d (diff) |
Add Go code highlighting in examples
Signed-off-by: Nikolas Sepos <nikolas.sepos@gmail.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,7 +38,7 @@ See more example code at https://github.com/insomniacslk/exdhcp To run a DHCPv6 transaction on the interface "eth0": -``` +```go package main import ( @@ -79,7 +79,7 @@ func main() { ## DHCPv6 packet crafting and manipulation -``` +```go package main import ( @@ -182,7 +182,7 @@ available. An example server that will print (but not reply to) the client's request is shown below: -``` +```go package main import ( |