-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdoc.go
40 lines (26 loc) · 819 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2014 The Postmon API Team. All rights reserved.
// Use of this source code is governed by an Apache-style
// license that can be found in the README.md file.
/*
Package postmongo implements an easy way to use the Postmon API.
Use
The most simplest way to use:
package main
import (
"fmt"
"github.com/PostmonAPI/postmongo"
)
func main() {
res, err := postmongo.BuscarCep("01419101")
fmt.Println(res)
fmt.Println(err)
}
ToDo
List of things we need to improve:
* Add support for Postmon's method rastreio
* Improve unit tests
Useful links
See more about the "Postmon API" at http://postmon.com.br
See all Wrappers and API Source Code at http://github.com/PostmonAPI
*/
package postmongo