vendor dependencies with 'dep'
This commit is contained in:
parent
f2620bb98c
commit
6c8586f48e
9 changed files with 715 additions and 0 deletions
35
vendor/github.com/dutchcoders/go-clamd/README.md
generated
vendored
Normal file
35
vendor/github.com/dutchcoders/go-clamd/README.md
generated
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
go-clamd
|
||||
========
|
||||
|
||||
Interface to clamd (clamav daemon). You can use go-clamd to implement virus detection capabilities to your application.
|
||||
|
||||
[](https://godoc.org/github.com/dutchcoders/go-clamd)
|
||||
[](https://travis-ci.org/dutchcoders/go-clamd)
|
||||
|
||||
## Examples
|
||||
|
||||
```
|
||||
c := clamd.NewClamd("/tmp/clamd.socket")
|
||||
|
||||
reader := bytes.NewReader(clamd.EICAR)
|
||||
response, err := c.ScanStream(reader, make(chan bool))
|
||||
|
||||
for s := range response {
|
||||
fmt.Printf("%v %v\n", s, err)
|
||||
}
|
||||
```
|
||||
|
||||
## Contributions
|
||||
|
||||
Contributions are welcome.
|
||||
|
||||
## Creators
|
||||
|
||||
**Remco Verhoef**
|
||||
- <https://twitter.com/remco_verhoef>
|
||||
|
||||
- <https://twitter.com/dutchcoders>
|
||||
|
||||
## Copyright and license
|
||||
|
||||
Code and documentation copyright 2011-2014 Remco Verhoef. Code released under [the MIT license](LICENSE).
|
Loading…
Add table
Add a link
Reference in a new issue