aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/johaus/main.go2
-rw-r--r--go.mod2
-rw-r--r--go.sum4
-rw-r--r--gomod2nix.toml736
-rw-r--r--tg/polyglot/main.go2
5 files changed, 741 insertions, 5 deletions
diff --git a/cmd/johaus/main.go b/cmd/johaus/main.go
index 092cd69..c0c0bed 100644
--- a/cmd/johaus/main.go
+++ b/cmd/johaus/main.go
@@ -8,7 +8,7 @@ import (
"log"
"net/http"
- "git.xeserv.us/xena/jvozba"
+ "tulpa.dev/cadey/jvozba"
"within.website/johaus/parser"
_ "within.website/johaus/parser/camxes"
"within.website/johaus/pretty"
diff --git a/go.mod b/go.mod
index 92fac9e..c359cb0 100644
--- a/go.mod
+++ b/go.mod
@@ -2,7 +2,6 @@ module within.website/x
require (
cirello.io/goherokuname v0.0.0-20190914093443-b436bae8c2c5
- git.xeserv.us/xena/jvozba v0.0.0-20190616002803-f274e24d1e52
github.com/McKael/madon/v2 v2.0.0-20180929094633-c679abc985d6
github.com/Yawning/bulb v0.0.0-20170405033506-85d80d893c3d
github.com/aclements/go-moremath v0.0.0-20190506201756-286cc0be6f75 // indirect
@@ -68,6 +67,7 @@ require (
golang.org/x/oauth2 v0.0.0-20190523182746-aaccbc9213b0
google.golang.org/appengine v1.6.0 // indirect
gopkg.in/tucnak/telebot.v2 v2.0.0-20190415090633-8c1c512262f2
+ tulpa.dev/cadey/jvozba v0.0.0-20200326200349-f0ebe310be06
within.website/confyg v0.4.0
within.website/johaus v1.1.0
within.website/ln v0.7.0
diff --git a/go.sum b/go.sum
index 029bfbe..b62d5af 100644
--- a/go.sum
+++ b/go.sum
@@ -2,8 +2,6 @@ bou.ke/monkey v1.0.1/go.mod h1:FgHuK96Rv2Nlf+0u1OOVDpCMdsWyOFmeeketDHE7LIg=
cirello.io/goherokuname v0.0.0-20190914093443-b436bae8c2c5 h1:W1xHfkFJ/G3/KGsRFV1S9DPFM6yB+ndu4Tbnvp7Ec1E=
cirello.io/goherokuname v0.0.0-20190914093443-b436bae8c2c5/go.mod h1:lfp+7qXdkiHbLqAvsA4v2Cyll5djTKZTiNi+iDfPJcw=
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-git.xeserv.us/xena/jvozba v0.0.0-20190616002803-f274e24d1e52 h1:MumuDSv8Ebsal1C98APrRRb8JyX+FpKiyGT/8fiMjaw=
-git.xeserv.us/xena/jvozba v0.0.0-20190616002803-f274e24d1e52/go.mod h1:lPdeNnexyxX+GQt62HV9UypJDg9enMwadWLXazGUUuc=
github.com/McKael/madon/v2 v2.0.0-20180929094633-c679abc985d6 h1:9cJcTOeILzInNo+DCYmXKME1QfAP07FYdo3M9/9jyc4=
github.com/McKael/madon/v2 v2.0.0-20180929094633-c679abc985d6/go.mod h1:mvlJhxZCchfiasx3XvN3hBu5RekGwTDm09dKlSM/dQQ=
github.com/Yawning/bulb v0.0.0-20170405033506-85d80d893c3d h1:ASfbc4vPGK69qbMO5qqRtGxfPvUmfbaK1ryEBv9WnQQ=
@@ -196,6 +194,8 @@ gopkg.in/tucnak/telebot.v2 v2.0.0-20190415090633-8c1c512262f2 h1:wGFU+pn16CuaCt4
gopkg.in/tucnak/telebot.v2 v2.0.0-20190415090633-8c1c512262f2/go.mod h1:+//wyPtHTeW2kfyEBwB05Hqnxev7AGrsLIyylSH++KU=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
+tulpa.dev/cadey/jvozba v0.0.0-20200326200349-f0ebe310be06 h1:va9TfLrDow17NpRPkZW9rwrEecY8lko/99rtBOS0AEE=
+tulpa.dev/cadey/jvozba v0.0.0-20200326200349-f0ebe310be06/go.mod h1:24Hynxow485ZwxAmn0yO1ATKApVnOB2dFM3zrtrGla0=
within.website/confyg v0.4.0 h1:FklkpJyMLYBxECCI4RS4R2c/x7PblOvbX0qBjk8Wkjs=
within.website/confyg v0.4.0/go.mod h1:KD5rDgkE3B+vbDiH/usiuK+CfiOkCiuD87NEF3/budk=
within.website/johaus v1.1.0 h1:j59k9LM5ue+CDwUZAJitYjek6i8ISMkkCFiVXKZLByw=
diff --git a/gomod2nix.toml b/gomod2nix.toml
new file mode 100644
index 0000000..eba1beb
--- /dev/null
+++ b/gomod2nix.toml
@@ -0,0 +1,736 @@
+["bou.ke/monkey"]
+ sumVersion = "v1.0.1"
+ ["bou.ke/monkey".fetch]
+ type = "git"
+ url = "https://github.com/bouk/monkey"
+ rev = "bdf6dea004c6fd1cdf4b25da8ad45a606c09409a"
+ sha256 = "050y07pwx5zk7fchp0lhf35w417sml7lxkkzly8f932fy25rydz5"
+
+["cirello.io/goherokuname"]
+ sumVersion = "v0.0.0-20190914093443-b436bae8c2c5"
+ ["cirello.io/goherokuname".fetch]
+ type = "git"
+ url = "https://github.com/cirello-io/goherokuname"
+ rev = "b436bae8c2c5e0385a01d539bbab5adb6cf9af0b"
+ sha256 = "1qjspg59hpc1pd4nnj6zqma2pdn38yvl43j43ij1fy8sbh4r42y2"
+
+["cloud.google.com/go"]
+ sumVersion = "v0.34.0"
+ ["cloud.google.com/go".fetch]
+ type = "git"
+ url = "https://github.com/googleapis/google-cloud-go"
+ rev = "0ebda48a7f143b1cce9eb37a8c1106ac762a3430"
+ sha256 = "1kclgclwar3r37zbvb9gg3qxbgzkb50zk3s9778zlh2773qikmai"
+
+["github.com/McKael/madon/v2"]
+ sumVersion = "v2.0.0-20180929094633-c679abc985d6"
+ ["github.com/McKael/madon/v2".fetch]
+ type = "git"
+ url = "https://github.com/McKael/madon"
+ rev = "c679abc985d60bbe2508a06ab387a53553bf7ec8"
+ sha256 = "023ld4fqm6757m8s7f3870irbgnsqyg842bqpd936ml4qbx5ykki"
+
+["github.com/Yawning/bulb"]
+ sumVersion = "v0.0.0-20170405033506-85d80d893c3d"
+ ["github.com/Yawning/bulb".fetch]
+ type = "git"
+ url = "https://github.com/Yawning/bulb"
+ rev = "85d80d893c3d4a478b8c0abbc43f0ea13e1ce4f9"
+ sha256 = "0r7hc7nb5bddmyhgcwz6587gq41k8547p9ny8hhljkvzk5j5sh8q"
+
+["github.com/aclements/go-moremath"]
+ sumVersion = "v0.0.0-20190506201756-286cc0be6f75"
+ ["github.com/aclements/go-moremath".fetch]
+ type = "git"
+ url = "https://github.com/aclements/go-moremath"
+ rev = "286cc0be6f75d9cd9f3af60aef9930cb0c15db47"
+ sha256 = "1w3nbdxn67j2z5vmbd738x695wmayv5pprc44kf9lcfx199d4ybq"
+
+["github.com/birkelund/boltdbcache"]
+ sumVersion = "v1.0.0"
+ ["github.com/birkelund/boltdbcache".fetch]
+ type = "git"
+ url = "https://github.com/birkelund/boltdbcache"
+ rev = "980cbf73c52fbf2262e425a677c6a1a1d943e821"
+ sha256 = "18yvkaq4zi03bj8xm7v9djld57p3ildrl3606f7i1hk2jdabh5gz"
+
+["github.com/bwmarrin/discordgo"]
+ sumVersion = "v0.20.2"
+ ["github.com/bwmarrin/discordgo".fetch]
+ type = "git"
+ url = "https://github.com/bwmarrin/discordgo"
+ rev = "b3cc83b10cce9e09fd126fd9bca044be3f97a4f6"
+ sha256 = "1ka327vprw2v3hzashpxadgm8kflaxfxibzkjy7z9cmds6bs9vsf"
+
+["github.com/codahale/hdrhistogram"]
+ sumVersion = "v0.0.0-20161010025455-3a0bb77429bd"
+ ["github.com/codahale/hdrhistogram".fetch]
+ type = "git"
+ url = "https://github.com/codahale/hdrhistogram"
+ rev = "3a0bb77429bd3a61596f5e8a3172445844342120"
+ sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57"
+
+["github.com/davecgh/go-spew"]
+ sumVersion = "v1.1.1"
+ ["github.com/davecgh/go-spew".fetch]
+ type = "git"
+ url = "https://github.com/davecgh/go-spew"
+ rev = "8991bc29aa16c548c550c7ff78260e27b9ab7c73"
+ sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"
+
+["github.com/dgryski/go-failure"]
+ sumVersion = "v0.0.0-20151001134759-4963dbd58fd0"
+ ["github.com/dgryski/go-failure".fetch]
+ type = "git"
+ url = "https://github.com/dgryski/go-failure"
+ rev = "4963dbd58fd03ebc6672b18f9237a9045e6ef479"
+ sha256 = "13a6ynxql3j2h71ah4svv2b1nzzm9q5rxj7ccspjk61ivfdkqyy0"
+
+["github.com/dgryski/go-onlinestats"]
+ sumVersion = "v0.0.0-20170612111826-1c7d19468768"
+ ["github.com/dgryski/go-onlinestats".fetch]
+ type = "git"
+ url = "https://github.com/dgryski/go-onlinestats"
+ rev = "1c7d1946876822b4a3a4b11b598e3aad1d05265e"
+ sha256 = "1fd98vwnl7d7lpka2590120injl47x2bpy58xcx80y6vh5fk8500"
+
+["github.com/disintegration/imaging"]
+ sumVersion = "v1.6.1"
+ ["github.com/disintegration/imaging".fetch]
+ type = "git"
+ url = "https://github.com/disintegration/imaging"
+ rev = "9aab30e6aa535fe3337b489b76759ef97dfaf362"
+ sha256 = "015amm3x989hl3r4gxnixj602fl9j8z53n0lrq804cbfbk7a31fw"
+
+["github.com/eaburns/peggy"]
+ sumVersion = "v0.0.0-20190420135231-b61cdde6efe6"
+ ["github.com/eaburns/peggy".fetch]
+ type = "git"
+ url = "https://github.com/eaburns/peggy"
+ rev = "b61cdde6efe616f122cbb28b7b4b050ff43e532b"
+ sha256 = "0xa51ixmg94r5cjwmn0d8l43mna3ybs6niqx9qvaldb73l0gmlzl"
+
+["github.com/eaburns/pretty"]
+ sumVersion = "v0.0.0-20190404101635-2e1d2550ef0b"
+ ["github.com/eaburns/pretty".fetch]
+ type = "git"
+ url = "https://github.com/eaburns/pretty"
+ rev = "2e1d2550ef0b2d5d4936b665ed3e2991e975f549"
+ sha256 = "1szjmfzhca419fwfglrm7x12xndv46vkzc7fg8r8xzkz1qxnh5bg"
+
+["github.com/facebookgo/ensure"]
+ sumVersion = "v0.0.0-20160127193407-b4ab57deab51"
+ ["github.com/facebookgo/ensure".fetch]
+ type = "git"
+ url = "https://github.com/facebookgo/ensure"
+ rev = "b4ab57deab51ee655ae4bd85281f0715a068016d"
+ sha256 = "19icavc3sg0mdz8151q3vp2vn3ipq53mnb9h9n57w32amyyszl4d"
+
+["github.com/facebookgo/stack"]
+ sumVersion = "v0.0.0-20160209184415-751773369052"
+ ["github.com/facebookgo/stack".fetch]
+ type = "git"
+ url = "https://github.com/facebookgo/stack"
+ rev = "751773369052141c013c6e827a71e8f35c07879c"
+ sha256 = "07yr05mz7h007ldpij90zjflwgixp148sbyrdlh1fj5bikr4p8m3"
+
+["github.com/facebookgo/subset"]
+ sumVersion = "v0.0.0-20150612182917-8dac2c3c4870"
+ ["github.com/facebookgo/subset".fetch]
+ type = "git"
+ url = "https://github.com/facebookgo/subset"
+ rev = "8dac2c3c48703541e481feddf22975953d4ff842"
+ sha256 = "0kyc2m5wxjzj4fwspybgn1mgjzhbdfnadpwy9mrw1s05bh21rgai"
+
+["github.com/fogleman/gg"]
+ sumVersion = "v1.3.0"
+ ["github.com/fogleman/gg".fetch]
+ type = "git"
+ url = "https://github.com/fogleman/gg"
+ rev = "0403632d5b905943a1c2a5b2763aaecd568467ec"
+ sha256 = "1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n"
+
+["github.com/fogleman/primitive"]
+ sumVersion = "v0.0.0-20190214200932-673f57e7b1b5"
+ ["github.com/fogleman/primitive".fetch]
+ type = "git"
+ url = "https://github.com/fogleman/primitive"
+ rev = "673f57e7b1b5ae5bc415b47c76130bab35b08297"
+ sha256 = "0m8p6l3iq47q51cbn1x0aw8c69r43a0v4kxflgmyrany51zfi59m"
+
+["github.com/garyburd/redigo"]
+ sumVersion = "v1.6.0"
+ ["github.com/garyburd/redigo".fetch]
+ type = "git"
+ url = "https://github.com/garyburd/redigo"
+ rev = "a69d19351219b6dd56f274f96d85a7014a2ec34e"
+ sha256 = "0k88z3vmqn36msw06qlwqw7xy8blvg06wkc5a9nyhrfv5z5x9a2v"
+
+["github.com/golang/freetype"]
+ sumVersion = "v0.0.0-20170609003504-e2365dfdc4a0"
+ ["github.com/golang/freetype".fetch]
+ type = "git"
+ url = "https://github.com/golang/freetype"
+ rev = "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4"
+ sha256 = "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc"
+
+["github.com/golang/protobuf"]
+ sumVersion = "v1.3.1"
+ ["github.com/golang/protobuf".fetch]
+ type = "git"
+ url = "https://github.com/golang/protobuf"
+ rev = "b5d812f8a3706043e23a9cd5babf2e5423744d30"
+ sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"
+
+["github.com/google/go-github"]
+ sumVersion = "v17.0.0+incompatible"
+ ["github.com/google/go-github".fetch]
+ type = "git"
+ url = "https://github.com/google/go-github"
+ rev = "747f93dd9b489bd56f7442b3c42bfea12800a75b"
+ sha256 = "1kvw95l77a5n5rgal9n1xjh58zxb3a40ij1j722b1h4z8yg9jhg4"
+
+["github.com/google/go-querystring"]
+ sumVersion = "v1.0.0"
+ ["github.com/google/go-querystring".fetch]
+ type = "git"
+ url = "https://github.com/google/go-querystring"
+ rev = "44c6ddd0a2342c386950e880b658017258da92fc"
+ sha256 = "0xl12bqyvmn4xcnf8p9ksj9rmnr7s40pvppsdmy8n9bzw1db0iwz"
+
+["github.com/google/uuid"]
+ sumVersion = "v1.1.1"
+ ["github.com/google/uuid".fetch]
+ type = "git"
+ url = "https://github.com/google/uuid"
+ rev = "0cd6bf5da1e1c83f8b45653022c74f71af0538a4"
+ sha256 = "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb"
+
+["github.com/gorilla/websocket"]
+ sumVersion = "v1.4.0"
+ ["github.com/gorilla/websocket".fetch]
+ type = "git"
+ url = "https://github.com/gorilla/websocket"
+ rev = "66b9c49e59c6c48f0ffce28c2d8b8a5678502c6d"
+ sha256 = "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk"
+
+["github.com/gregjones/httpcache"]
+ sumVersion = "v0.0.0-20190212212710-3befbb6ad0cc"
+ ["github.com/gregjones/httpcache".fetch]
+ type = "git"
+ url = "https://github.com/gregjones/httpcache"
+ rev = "3befbb6ad0cc97d4c25d851e9528915809e1a22f"
+ sha256 = "0z7sf9id5sgahyq0iygagin5102836fg1gw6wx3qlfcrrns6argp"
+
+["github.com/hashicorp/errwrap"]
+ sumVersion = "v1.0.0"
+ ["github.com/hashicorp/errwrap".fetch]
+ type = "git"
+ url = "https://github.com/hashicorp/errwrap"
+ rev = "8a6fb523712970c966eefc6b39ed2c5e74880354"
+ sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c"
+
+["github.com/hashicorp/go-multierror"]
+ sumVersion = "v1.0.0"
+ ["github.com/hashicorp/go-multierror".fetch]
+ type = "git"
+ url = "https://github.com/hashicorp/go-multierror"
+ rev = "886a7fbe3eb1c874d46f623bfa70af45f425b3d1"
+ sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49"
+
+["github.com/hullerob/go.farbfeld"]
+ sumVersion = "v0.0.0-20181222022525-3661193c725f"
+ ["github.com/hullerob/go.farbfeld".fetch]
+ type = "git"
+ url = "https://github.com/hullerob/go.farbfeld"
+ rev = "3661193c725f2b03930eedee680877ab0b1741da"
+ sha256 = "0b7xd08ba9qcjxxqk71vsjymx5d94n7p2kmqy6b5ydgfj3l0qh5x"
+
+["github.com/jaytaylor/html2text"]
+ sumVersion = "v0.0.0-20190408195923-01ec452cbe43"
+ ["github.com/jaytaylor/html2text".fetch]
+ type = "git"
+ url = "https://github.com/jaytaylor/html2text"
+ rev = "01ec452cbe43774f989516272881441cae40c16b"
+ sha256 = "0r8na2jd0jgir7naslswj3k99fwibrbfpns7jj4bviyclyr76k2m"
+
+["github.com/joeshaw/envdecode"]
+ sumVersion = "v0.0.0-20180312135643-c9e015854467"
+ ["github.com/joeshaw/envdecode".fetch]
+ type = "git"
+ url = "https://github.com/joeshaw/envdecode"
+ rev = "c9e0158544672841c3ebf49308f536d918f2e525"
+ sha256 = "11dzky630xzk19lk9wqdd26i0cmmnx905s2jrwmzc1vcfx0xmfqb"
+
+["github.com/joho/godotenv"]
+ sumVersion = "v1.3.0"
+ ["github.com/joho/godotenv".fetch]
+ type = "git"
+ url = "https://github.com/joho/godotenv"
+ rev = "23d116af351c84513e1946b527c88823e476be13"
+ sha256 = "0ri8if0pc3x6jg4c3i8wr58xyfpxkwmcjk3rp8gb398a1aa3gpjm"
+
+["github.com/kballard/go-shellquote"]
+ sumVersion = "v0.0.0-20180428030007-95032a82bc51"
+ ["github.com/kballard/go-shellquote".fetch]
+ type = "git"
+ url = "https://github.com/kballard/go-shellquote"
+ rev = "95032a82bc518f77982ea72343cc1ade730072f0"
+ sha256 = "1rspvmnsikdq95jmx3dykxd4k1rmgl98ryjrysvl0cf18hl1vq80"
+
+["github.com/klauspost/cpuid"]
+ sumVersion = "v1.2.1"
+ ["github.com/klauspost/cpuid".fetch]
+ type = "git"
+ url = "https://github.com/klauspost/cpuid"
+ rev = "05a8198c0f5a27739aec358908d7e12c64ce6eb7"
+ sha256 = "1071wchrs37bvpb99fwf19fjrpz0yaqipi2y2hjvim419flvd49x"
+
+["github.com/klauspost/reedsolomon"]
+ sumVersion = "v1.9.2"
+ ["github.com/klauspost/reedsolomon".fetch]
+ type = "git"
+ url = "https://github.com/klauspost/reedsolomon"
+ rev = "0883d2f0110ebc0d49684b4701e1d528422339c9"
+ sha256 = "0n1x2lnqfdskn8na30s4icr2pbhwrnh4zwns59d8b0m9a44d7pqn"
+
+["github.com/kr/pretty"]
+ sumVersion = "v0.2.0"
+ ["github.com/kr/pretty".fetch]
+ type = "git"
+ url = "https://github.com/kr/pretty"
+ rev = "4e0886370c3a67530192c6a238cff68f56c141b0"
+ sha256 = "1ywbfzz1h3a3qd8rpkiqwi1dm4w8ls9ijb4x1b7567grns9f0vnp"
+
+["github.com/kr/pty"]
+ sumVersion = "v1.1.1"
+ ["github.com/kr/pty".fetch]
+ type = "git"
+ url = "https://github.com/kr/pty"
+ rev = "282ce0e5322c82529687d609ee670fac7c7d917c"
+ sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6"
+
+["github.com/kr/text"]
+ sumVersion = "v0.1.0"
+ ["github.com/kr/text".fetch]
+ type = "git"
+ url = "https://github.com/kr/text"
+ rev = "e2ffdb16a802fe2bb95e2e35ff34f0e53aeef34f"
+ sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1"
+
+["github.com/mattn/go-runewidth"]
+ sumVersion = "v0.0.4"
+ ["github.com/mattn/go-runewidth".fetch]
+ type = "git"
+ url = "https://github.com/mattn/go-runewidth"
+ rev = "3ee7d812e62a0804a7d0a324e0249ca2db3476d3"
+ sha256 = "00b3ssm7wiqln3k54z2wcnxr3k3c7m1ybyhb9h8ixzbzspld0qzs"
+
+["github.com/miekg/dns"]
+ sumVersion = "v1.1.28"
+ ["github.com/miekg/dns".fetch]
+ type = "git"
+ url = "https://github.com/miekg/dns"
+ rev = "40ecd66164f150e0c8b732abfd80751eadf6f931"
+ sha256 = "0ykik0rcan6fzhra42dbk0jmdqpwpl1a1kf828sxqh80fyp58ygl"
+
+["github.com/mmikulicic/stringlist"]
+ sumVersion = "v1.0.0"
+ ["github.com/mmikulicic/stringlist".fetch]
+ type = "git"
+ url = "https://github.com/mmikulicic/stringlist"
+ rev = "4d317ea99dee2f011b33c56138c3b57376ac4ba2"
+ sha256 = "0zd4xlisfbj2pasp8aapdaz6wglbx0phvgak0snnh3y13hv0zxyh"
+
+["github.com/mndrix/golog"]
+ sumVersion = "v0.0.0-20170330170653-a28e2a269775"
+ ["github.com/mndrix/golog".fetch]
+ type = "git"
+ url = "https://github.com/mndrix/golog"
+ rev = "a28e2a2697753085320289e97116113b30b654db"
+ sha256 = "1i8zs7kfj11s13pz0ynk7bhsr3p82726ncrrwmr6hjylpq5y5rjv"
+
+["github.com/mndrix/ps"]
+ sumVersion = "v0.0.0-20170330174427-18e65badd6ab"
+ ["github.com/mndrix/ps".fetch]
+ type = "git"
+ url = "https://github.com/mndrix/ps"
+ rev = "18e65badd6ab498ebf91777d2123a17d5f6b08b6"
+ sha256 = "0i26wb1mphn8py6d62qp352bmkg1v1pg3kxg0swxx5gcndv7fmf7"
+
+["github.com/olekukonko/tablewriter"]
+ sumVersion = "v0.0.1"
+ ["github.com/olekukonko/tablewriter".fetch]
+ type = "git"
+ url = "https://github.com/olekukonko/tablewriter"
+ rev = "e6d60cf7ba1f42d86d54cdf5508611c4aafb3970"
+ sha256 = "0hh95glg7d2md185r03wn52j2r33jc4zil0qvcrs66ka7bdxi7vj"
+
+["github.com/otiai10/copy"]
+ sumVersion = "v1.0.2"
+ ["github.com/otiai10/copy".fetch]
+ type = "git"
+ url = "https://github.com/otiai10/copy"
+ rev = "f98458f9df5788f53462a1bf427b728f113ab481"
+ sha256 = "1z0917qyfb6sb09hdbydbgykf3asl2sm30d9vahn702511a290z4"
+
+["github.com/otiai10/curr"]
+ sumVersion = "v0.0.0-20190513014714-f5a3d24e5776"
+ ["github.com/otiai10/curr".fetch]
+ type = "git"
+ url = "https://github.com/otiai10/curr"
+ rev = "f5a3d24e577654187b8f2bfb3074496c31ff6524"
+ sha256 = "01k33ifs9n0pnhwhbfb9ws3q5sa37fi7dhir5vjakpfzdin07y4w"
+
+["github.com/otiai10/mint"]
+ sumVersion = "v1.3.0"
+ ["github.com/otiai10/mint".fetch]
+ type = "git"
+ url = "https://github.com/otiai10/mint"
+ rev = "a80106dbfe216e22b6fdbd069dd84ab0bfed6665"
+ sha256 = "0kfc95jc2hfgwzcpdfa5hrxgj7s6rzx5jc0n1sn863bsngx2q1ca"
+
+["github.com/pborman/uuid"]
+ sumVersion = "v1.2.0"
+ ["github.com/pborman/uuid".fetch]
+ type = "git"
+ url = "https://github.com/pborman/uuid"
+ rev = "8b1b92947f46224e3b97bb1a3a5b0382be00d31e"
+ sha256 = "0f146yjqwx2mr110kl8scjhqd08hys7vr5z0d0a3lskb6yy22gfg"
+
+["github.com/peterh/liner"]
+ sumVersion = "v1.1.0"
+ ["github.com/peterh/liner".fetch]
+ type = "git"
+ url = "https://github.com/peterh/liner"
+ rev = "5a0dfa99e2aa1d433a9642e863da51402e609376"
+ sha256 = "14rww75fn33mb3w87gd547gv7zr3klvgzxcpbaxd6vjls18wh831"
+
+["github.com/phayes/freeport"]
+ sumVersion = "v0.0.0-20180830031419-95f893ade6f2"
+ ["github.com/phayes/freeport".fetch]
+ type = "git"
+ url = "https://github.com/phayes/freeport"
+ rev = "95f893ade6f232a5f1511d61735d89b1ae2df543"
+ sha256 = "09kkm359hg8xl6qj8fqrs5fkrzn82i7frr5i0vy1kkfvd9ng6n90"
+
+["github.com/pkg/errors"]
+ sumVersion = "v0.8.1"
+ ["github.com/pkg/errors".fetch]
+ type = "git"
+ url = "https://github.com/pkg/errors"
+ rev = "ba968bfe8b2f7e042a574c888954fccecfa385b4"
+ sha256 = "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1"
+
+["github.com/pmezard/go-difflib"]
+ sumVersion = "v1.0.0"
+ ["github.com/pmezard/go-difflib".fetch]
+ type = "git"
+ url = "https://github.com/pmezard/go-difflib"
+ rev = "792786c7400a136282c1664665ae0a8db921c6c2"
+ sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"
+
+["github.com/posener/complete"]
+ sumVersion = "v1.2.3"
+ ["github.com/posener/complete".fetch]
+ type = "git"
+ url = "https://github.com/posener/complete"
+ rev = "05b68ffc813dd10c420993cb1cf927b346c057b8"
+ sha256 = "0nri6hkfb0z3dkxf2fsfidr4bxbn91rjsqhg5s0c2jplf0aclppz"
+
+["github.com/sendgrid/rest"]
+ sumVersion = "v2.4.1+incompatible"
+ ["github.com/sendgrid/rest".fetch]
+ type = "git"
+ url = "https://github.com/sendgrid/rest"
+ rev = "306b9bef57dc36f3435ccfcc08fe6ae2c6920344"
+ sha256 = "1jvcgxp1vbdi3ppkl14rf7c8dbaycwibwbh2s9469675xqhh2pxm"
+
+["github.com/ssor/bom"]
+ sumVersion = "v0.0.0-20170718123548-6386211fdfcf"
+ ["github.com/ssor/bom".fetch]
+ type = "git"
+ url = "https://github.com/ssor/bom"
+ rev = "6386211fdfcf24c0bfbdaceafd02849ed9a8a509"
+ sha256 = "09g5496ifwqxqclh2iw58plcwcz0sczlnxwqxzwmnl4shdl371ld"
+
+["github.com/streamrail/concurrent-map"]
+ sumVersion = "v0.0.0-20160823150647-8bf1e9bacbf6"
+ ["github.com/streamrail/concurrent-map".fetch]
+ type = "git"
+ url = "https://github.com/streamrail/concurrent-map"
+ rev = "8bf1e9bacbf65b10c81d0f4314cf2b1ebef728b5"
+ sha256 = "0xbyzwx1i3slqzizg7nw793zbm3an30zqpcfvq73krdharji5imd"
+
+["github.com/stretchr/objx"]
+ sumVersion = "v0.1.0"
+ ["github.com/stretchr/objx".fetch]
+ type = "git"
+ url = "https://github.com/stretchr/objx"
+ rev = "facf9a85c22f48d2f52f2380e4efce1768749a89"
+ sha256 = "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w"
+
+["github.com/stretchr/testify"]
+ sumVersion = "v1.4.0"
+ ["github.com/stretchr/testify".fetch]
+ type = "git"
+ url = "https://github.com/stretchr/testify"
+ rev = "221dbe5ed46703ee255b1da0dec05086f5035f62"
+ sha256 = "187i5g88sxfy4vxpm7dw1gwv29pa2qaq475lxrdh5livh69wqfjb"
+
+["github.com/sycamoreone/orc"]
+ sumVersion = "v0.0.0-20150204213357-1627eaec2699"
+ ["github.com/sycamoreone/orc".fetch]
+ type = "git"
+ url = "https://github.com/sycamoreone/orc"
+ rev = "1627eaec269965440f742a25a627910195ad1c7a"
+ sha256 = "0p01qa2r1jv1bdbnff6rhv2fmd1svlhidqns8jd1447d0lhsvng7"
+
+["github.com/templexxx/cpufeat"]
+ sumVersion = "v0.0.0-20180724012125-cef66df7f161"
+ ["github.com/templexxx/cpufeat".fetch]
+ type = "git"
+ url = "https://github.com/templexxx/cpufeat"
+ rev = "cef66df7f161dee20f4d650da7268d77eaaec82d"
+ sha256 = "183aviadgq0slzighpa9z32cd26991hv5d5jnmk7frcq0nd62p9k"
+
+["github.com/templexxx/xor"]
+ sumVersion = "v0.0.0-20181023030647-4e92f724b73b"
+ ["github.com/templexxx/xor".fetch]
+ type = "git"
+ url = "https://github.com/templexxx/xor"
+ rev = "4e92f724b73b7aaf61869bb1ae5817822e738430"
+ sha256 = "1z30wzrpmhh8wqfby91kbggxfwyivqa8xw8srzqc0pxaj0rni93d"
+
+["github.com/tjfoc/gmsm"]
+ sumVersion = "v1.0.1"
+ ["github.com/tjfoc/gmsm".fetch]
+ type = "git"
+ url = "https://github.com/tjfoc/gmsm"
+ rev = "57a3809c83f3350051b98d7c55eee4b7e6ecca81"
+ sha256 = "1prgd7d6dwr0nq63rq95v1fah5zzdbywbjb6zg8r1ygpfwf9haq3"
+
+["github.com/tmc/scp"]
+ sumVersion = "v0.0.0-20170824174625-f7b48647feef"
+ ["github.com/tmc/scp".fetch]
+ type = "git"
+ url = "https://github.com/tmc/scp"
+ rev = "f7b48647feef3e30991f2ecc16b2b9a977d9a7c3"
+ sha256 = "1gkpfahqc65zprr0v0yvdylz2xndyv7xfhcphiapbqs0f9pi0z58"
+
+["github.com/velour/chat"]
+ sumVersion = "v0.0.0-20180713122344-fd1d1606cb89"
+ ["github.com/velour/chat".fetch]
+ type = "git"
+ url = "https://github.com/velour/chat"
+ rev = "fd1d1606cb8966f7141d57428833bf76e5b184ea"
+ sha256 = "1n9dyvqy3fr2f9hfzmrcikj6blx3xz2r7jg8i4j8a78033rb2fn0"
+
+["github.com/xlzd/gotp"]
+ sumVersion = "v0.0.0-20181030022105-c8557ba2c119"
+ ["github.com/xlzd/gotp".fetch]
+ type = "git"
+ url = "https://github.com/xlzd/gotp"
+ rev = "c8557ba2c11930b3069b31bfd80f38cc774cc68a"
+ sha256 = "1wmzalmbndl3irhlr0pd1dlk7ln1yzv8fckrciv5xpjr3ydxlm9m"
+
+["github.com/xtaci/kcp-go"]
+ sumVersion = "v5.4.20+incompatible"
+ ["github.com/xtaci/kcp-go".fetch]
+ type = "git"
+ url = "https://github.com/xtaci/kcp-go"
+ rev = "b1d82b8a82e775446d6700472900f0da93d2aca5"
+ sha256 = "0jljqbhklhx4cjxpqsm4v4ci1w2yaamxxyixyhh9sxhbcywcq6a8"
+
+["github.com/xtaci/lossyconn"]
+ sumVersion = "v0.0.0-20190602105132-8df528c0c9ae"
+ ["github.com/xtaci/lossyconn".fetch]
+ type = "git"
+ url = "https://github.com/xtaci/lossyconn"
+ rev = "8df528c0c9aeed110ff35a1d622c540d9f7d8f04"
+ sha256 = "0sbh56lfrpvyjkzp65h9dv9n2jda6b1slqamv0njzspigxr1zp44"
+
+["github.com/xtaci/smux"]
+ sumVersion = "v1.5.12"
+ ["github.com/xtaci/smux".fetch]
+ type = "git"
+ url = "https://github.com/xtaci/smux"
+ rev = "c6969d8a76874342611f4b544d05b1590f1a76b1"
+ sha256 = "18g6yq4kn4p9g0z8cymcij7i2nbmzb4gyx6b2byh0c2a2xfrc6y6"
+
+["github.com/yawning/bulb"]
+ sumVersion = "v0.0.0-20170405033506-85d80d893c3d"
+ ["github.com/yawning/bulb".fetch]
+ type = "git"
+ url = "https://github.com/yawning/bulb"
+ rev = "85d80d893c3d4a478b8c0abbc43f0ea13e1ce4f9"
+ sha256 = "0r7hc7nb5bddmyhgcwz6587gq41k8547p9ny8hhljkvzk5j5sh8q"
+
+["go.etcd.io/bbolt"]
+ sumVersion = "v1.3.2"
+ ["go.etcd.io/bbolt".fetch]
+ type = "git"
+ url = "https://github.com/etcd-io/bbolt"
+ rev = "63597a96ec0ad9e6d43c3fc81e809909e0237461"
+ sha256 = "13d5l6p6c5wvkr6vn9hkhz9c593qifn7fgx0hg4d6jcvg1y0bnm2"
+
+["go4.org"]
+ sumVersion = "v0.0.0-20190313082347-94abd6928b1d"
+ ["go4.org".fetch]
+ type = "git"
+ url = "https://github.com/go4org/go4"
+ rev = "94abd6928b1da39b1d757b60c93fb2419c409fa1"
+ sha256 = "0n9vp4f1a593r2nyzxb68sq7mrrfcakvnfgjj1wpfjkk6s0aq47y"
+
+["golang.org/x/crypto"]
+ sumVersion = "v0.0.0-20191011191535-87dc89f01550"
+ ["golang.org/x/crypto".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/crypto"
+ rev = "87dc89f01550277dc22b74ffcf4cd89fa2f40f4c"
+ sha256 = "0z4i1m2yn3f31ci7wvcm2rxkx2yiv7a78mfzklncmsz2k97rlh2g"
+
+["golang.org/x/exp/errors"]
+ sumVersion = "v0.0.0-20190510132918-efd6b22b2522"
+ relPath = "errors"
+ ["golang.org/x/exp/errors".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/exp"
+ rev = "efd6b22b2522a48712e1fd0b3c1ab34d243f5245"
+ sha256 = "0ysahwb7p6y09izks4ca8nk2w414gmjxzz44l5rmadlvk3k66cgp"
+
+["golang.org/x/image"]
+ sumVersion = "v0.0.0-20190523035834-f03afa92d3ff"
+ ["golang.org/x/image".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/image"
+ rev = "f03afa92d3ffad9e5ff762aa549908afe674f01e"
+ sha256 = "1y7fsc0rnvlsr5jwgqnyhkifidpffp2vf84vqlpi296a88764nx3"
+
+["golang.org/x/mod"]
+ sumVersion = "v0.1.1-0.20191105210325-c90efee705ee"
+ ["golang.org/x/mod".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/mod"
+ rev = "c90efee705eefc6efa975842f5e85f455b0b4639"
+ sha256 = "0i5md645rmcy5z5ij9ng428k9rz4g3k1kjy3blsq1264rn426gdf"
+
+["golang.org/x/net"]
+ sumVersion = "v0.0.0-20190923162816-aa69164e4478"
+ ["golang.org/x/net".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/net"
+ rev = "aa69164e4478b84860dc6769c710c699c67058a3"
+ sha256 = "1w0r52a9csj5vkhysvdx6l5v2dq1lnmvs95ffhpibypjha7lq214"
+
+["golang.org/x/oauth2"]
+ sumVersion = "v0.0.0-20190523182746-aaccbc9213b0"
+ ["golang.org/x/oauth2".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/oauth2"
+ rev = "aaccbc9213b0974828f81aaac109d194880e3014"
+ sha256 = "0r211077yjbf0x0kj89bbfc78s7vvzwyj89b3h0qmxl5z6fgd7d2"
+
+["golang.org/x/sync"]
+ sumVersion = "v0.0.0-20190423024810-112230192c58"
+ ["golang.org/x/sync".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/sync"
+ rev = "112230192c580c3556b8cee6403af37a4fc5f28c"
+ sha256 = "05i2k43j2d0llq768hg5pf3hb2yhfzp9la1w5wp0rsnnzblr0lfn"
+
+["golang.org/x/sys"]
+ sumVersion = "v0.0.0-20190924154521-2837fb4f24fe"
+ ["golang.org/x/sys".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/sys"
+ rev = "2837fb4f24fee082b8c39b1a6dc9e0ed9f3fbd4f"
+ sha256 = "01wrq33y1bjkk0kpxhs59iq7i95llhs2f8k0v5mr3f6wd46v4h5b"
+
+["golang.org/x/text"]
+ sumVersion = "v0.3.0"
+ ["golang.org/x/text".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/text"
+ rev = "f21a4dfb5e38f5895301dc265a8def02365cc3d0"
+ sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19"
+
+["golang.org/x/tools"]
+ sumVersion = "v0.0.0-20191216052735-49a3e744a425"
+ ["golang.org/x/tools".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/tools"
+ rev = "49a3e744a42570834b70bfa2a7308c73f5bc6bc3"
+ sha256 = "0xx4gv9wpv36crk7gv7imf5vzzs2mz7zla2q2jkck3xnzff8fw3v"
+
+["golang.org/x/xerrors"]
+ sumVersion = "v0.0.0-20191011141410-1b5146add898"
+ ["golang.org/x/xerrors".fetch]
+ type = "git"
+ url = "https://go.googlesource.com/xerrors"
+ rev = "1b5146add8981d58be77b16229c0ff0f8bebd8c1"
+ sha256 = "0w2akj91krxjag0xdhsg78470888nicc5ismc2ap9jqpss6v1zih"
+
+["google.golang.org/appengine"]
+ sumVersion = "v1.6.0"
+ ["google.golang.org/appengine".fetch]
+ type = "git"
+ url = "https://github.com/golang/appengine"
+ rev = "4c25cacc810c02874000e4f7071286a8e96b2515"
+ sha256 = "1r73kw0q708jhac5q6cgrrr0avii6dv904ssp7l5mjajb2m5fj3k"
+
+["gopkg.in/check.v1"]
+ sumVersion = "v0.0.0-20161208181325-20d25e280405"
+ ["gopkg.in/check.v1".fetch]
+ type = "git"
+ url = "https://gopkg.in/check.v1"
+ rev = "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec"
+ sha256 = "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"
+
+["gopkg.in/tucnak/telebot.v2"]
+ sumVersion = "v2.0.0-20190415090633-8c1c512262f2"
+ ["gopkg.in/tucnak/telebot.v2".fetch]
+ type = "git"
+ url = "https://gopkg.in/tucnak/telebot.v2"
+ rev = "8c1c512262f2f97b1212eb1751efb498d2038a0c"
+ sha256 = "12w437rv8bcy7qbgzplfcy3jxzx877faag4gx5afmijxx0a6i6v7"
+
+["gopkg.in/yaml.v2"]
+ sumVersion = "v2.2.2"
+ ["gopkg.in/yaml.v2".fetch]
+ type = "git"
+ url = "https://gopkg.in/yaml.v2"
+ rev = "51d6538a90f86fe93ac480b35f37b2be17fef232"
+ sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"
+
+["tulpa.dev/cadey/jvozba"]
+ sumVersion = "v0.0.0-20200326200349-f0ebe310be06"
+ ["tulpa.dev/cadey/jvozba".fetch]
+ type = "git"
+ url = "https://tulpa.dev/cadey/jvozba.git"
+ rev = "f0ebe310be06b13da0c694648685d15aa5f38de2"
+ sha256 = "0i1925kb2km18khbijxn35jhd1pv54lgqk3rhjzc19q3vjnz9cyj"
+
+["within.website/confyg"]
+ sumVersion = "v0.4.0"
+ ["within.website/confyg".fetch]
+ type = "git"
+ url = "https://github.com/Xe/confyg"
+ rev = "35a1783b8141ef3966221aef2bbd452e6ade3e56"
+ sha256 = "1p1c9464x7xgy2843xfhwgplv8vni2crva9wsbiz87qv9hzmy2bs"
+
+["within.website/johaus"]
+ sumVersion = "v1.1.0"
+ ["within.website/johaus".fetch]
+ type = "git"
+ url = "https://github.com/Xe/johaus"
+ rev = "e7b32b5c9b03528c9b97fd708ad2a008a6e2b2b3"
+ sha256 = "0nwcfv40mhiyp2zzzsxg0j7717asdmhshg40dbnkwmqwhiqikdnb"
+
+["within.website/ln"]
+ sumVersion = "v0.7.0"
+ ["within.website/ln".fetch]
+ type = "git"
+ url = "https://github.com/Xe/ln"
+ rev = "6f353eb5f2f59dccf47637bb2df78ca852fc7158"
+ sha256 = "0lx8kxp97am8y6la6ap1a86pr81nnginwffr24abjswcqiadz8id"
diff --git a/tg/polyglot/main.go b/tg/polyglot/main.go
index 0048adf..e603cc4 100644
--- a/tg/polyglot/main.go
+++ b/tg/polyglot/main.go
@@ -11,7 +11,7 @@ import (
"strings"
"time"
- "git.xeserv.us/xena/jvozba"
+ "tulpa.dev/cadey/jvozba"
_ "github.com/joho/godotenv/autoload"
tb "gopkg.in/tucnak/telebot.v2"
"within.website/johaus/parser"