aboutsummaryrefslogtreecommitdiff
path: root/examples/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'examples/post.go')
-rw-r--r--examples/post.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/post.go b/examples/post.go
deleted file mode 100644
index 2789c46..0000000
--- a/examples/post.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package main
-
-import (
- "git.macaw.me/skunky/devianter"
-)
-
-func main() {
- id := "973578309"
- d := devianter.Deviation(id, "Thrumyeye")
-
- println("Post Name:", d.Deviation.Title, "\nIMG url:", d.IMG)
-
- c := devianter.Comments(id, "", 0, 1)
- println("\n\nPost Comments:", c.Total)
-
- for _, a := range c.Thread {
- if a.User.IsBanned {
- a.User.Username += " [v bane]"
- }
- println(a.User.Username+":", a.Comment)
- }
-
- search := devianter.Search("skunk", "2", 'a')
- println(search.Total, search.Pages)
-}