Use blitzprog/color instead of fatih/color
This commit is contained in:
parent
472946010b
commit
8f606d4a75
@ -5,7 +5,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
"github.com/pariz/gountries"
|
"github.com/pariz/gountries"
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
"github.com/bwmarrin/discordgo"
|
||||||
|
19
go.mod
19
go.mod
@ -5,37 +5,30 @@ go 1.12
|
|||||||
require (
|
require (
|
||||||
github.com/OneOfOne/xxhash v1.2.5
|
github.com/OneOfOne/xxhash v1.2.5
|
||||||
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705 // indirect
|
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705 // indirect
|
||||||
github.com/aerogo/aero v1.0.0
|
github.com/aerogo/aero v1.0.1
|
||||||
github.com/aerogo/api v0.1.0
|
github.com/aerogo/api v0.1.0
|
||||||
github.com/aerogo/crawler v0.1.0
|
github.com/aerogo/crawler v0.1.0
|
||||||
github.com/aerogo/csp v0.1.0 // indirect
|
github.com/aerogo/http v0.1.1
|
||||||
github.com/aerogo/http v0.1.0
|
|
||||||
github.com/aerogo/layout v0.1.0
|
github.com/aerogo/layout v0.1.0
|
||||||
github.com/aerogo/log v0.1.0
|
github.com/aerogo/log v0.1.0
|
||||||
github.com/aerogo/markdown v0.1.0
|
github.com/aerogo/markdown v0.1.0
|
||||||
github.com/aerogo/nano v0.1.0
|
github.com/aerogo/nano v0.1.0
|
||||||
github.com/aerogo/session v0.1.0 // indirect
|
|
||||||
github.com/aerogo/session-store-memory v0.1.0 // indirect
|
|
||||||
github.com/aerogo/session-store-nano v0.1.0
|
github.com/aerogo/session-store-nano v0.1.0
|
||||||
github.com/aerogo/sitemap v0.0.0-20171118144810-926059a596ae
|
github.com/aerogo/sitemap v0.0.0-20171118144810-926059a596ae
|
||||||
github.com/animenotifier/anilist v0.0.0-20190305235615-d1d5baf3760a
|
github.com/animenotifier/anilist v0.0.0-20190305235615-d1d5baf3760a
|
||||||
github.com/animenotifier/arn v1.0.1
|
github.com/animenotifier/arn v1.0.2
|
||||||
github.com/animenotifier/kitsu v0.0.0-20190311000532-8310b34f18d8
|
github.com/animenotifier/kitsu v0.0.0-20190311000532-8310b34f18d8
|
||||||
github.com/animenotifier/mal v0.0.0-20190306012317-15db3840fd60
|
github.com/animenotifier/mal v0.0.0-20190306012317-15db3840fd60
|
||||||
github.com/animenotifier/shoboi v0.0.0-20180321032539-68de8dd8046b
|
github.com/animenotifier/shoboi v0.0.0-20180321032539-68de8dd8046b
|
||||||
github.com/animenotifier/twist v0.0.0-20171021152718-743481a0ebff
|
github.com/animenotifier/twist v0.0.0-20171021152718-743481a0ebff
|
||||||
|
github.com/blitzprog/color v1.8.0
|
||||||
github.com/bwmarrin/discordgo v0.19.0
|
github.com/bwmarrin/discordgo v0.19.0
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
||||||
github.com/dustin/go-humanize v1.0.0
|
github.com/dustin/go-humanize v1.0.0
|
||||||
github.com/fatih/color v1.7.0
|
|
||||||
github.com/go-ini/ini v1.42.0 // indirect
|
github.com/go-ini/ini v1.42.0 // indirect
|
||||||
github.com/go-ole/go-ole v1.2.4 // indirect
|
github.com/go-ole/go-ole v1.2.4 // indirect
|
||||||
github.com/gomodule/oauth1 v0.0.0-20181215000758-9a59ed3b0a84
|
github.com/gomodule/oauth1 v0.0.0-20181215000758-9a59ed3b0a84
|
||||||
github.com/gopherjs/gopherjs v0.0.0-20190328170749-bb2674552d8f // indirect
|
|
||||||
github.com/graphql-go/graphql v0.7.8
|
github.com/graphql-go/graphql v0.7.8
|
||||||
github.com/json-iterator/go v1.1.6
|
github.com/json-iterator/go v1.1.6
|
||||||
github.com/klauspost/compress v1.4.1 // indirect
|
|
||||||
github.com/klauspost/cpuid v1.2.0 // indirect
|
|
||||||
github.com/logpacker/PayPal-Go-SDK v1.1.4+incompatible
|
github.com/logpacker/PayPal-Go-SDK v1.1.4+incompatible
|
||||||
github.com/minio/minio-go v6.0.14+incompatible
|
github.com/minio/minio-go v6.0.14+incompatible
|
||||||
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
||||||
@ -44,15 +37,11 @@ require (
|
|||||||
github.com/patrickmn/go-cache v2.1.0+incompatible
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
||||||
github.com/shirou/gopsutil v2.18.12+incompatible
|
github.com/shirou/gopsutil v2.18.12+incompatible
|
||||||
github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4 // indirect
|
github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4 // indirect
|
||||||
github.com/smartystreets/assertions v0.0.0-20190215210624-980c5ac6f3ac // indirect
|
|
||||||
github.com/stretchr/testify v1.3.0
|
github.com/stretchr/testify v1.3.0
|
||||||
go.uber.org/atomic v1.3.2 // indirect
|
go.uber.org/atomic v1.3.2 // indirect
|
||||||
go.uber.org/multierr v1.1.0 // indirect
|
go.uber.org/multierr v1.1.0 // indirect
|
||||||
go.uber.org/zap v1.9.1 // indirect
|
go.uber.org/zap v1.9.1 // indirect
|
||||||
golang.org/x/image v0.0.0-20190321063152-3fc05d484e9f // indirect
|
|
||||||
golang.org/x/net v0.0.0-20190328230028-74de082e2cca // indirect
|
|
||||||
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914
|
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914
|
||||||
golang.org/x/sys v0.0.0-20190329044733-9eb1bfa1ce65 // indirect
|
|
||||||
gopkg.in/ini.v1 v1.42.0 // indirect
|
gopkg.in/ini.v1 v1.42.0 // indirect
|
||||||
gopkg.in/yaml.v2 v2.2.2 // indirect
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
||||||
)
|
)
|
||||||
|
48
go.sum
48
go.sum
@ -7,27 +7,27 @@ github.com/PuerkitoBio/goquery v1.5.0/go.mod h1:qD2PgZ9lccMbQlc7eEOjaeRlFQON7xY8
|
|||||||
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705 h1:UUppSQnhf4Yc6xGxSkoQpPhb7RVzuv5Nb1mwJ5VId9s=
|
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705 h1:UUppSQnhf4Yc6xGxSkoQpPhb7RVzuv5Nb1mwJ5VId9s=
|
||||||
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
|
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
|
||||||
github.com/aerogo/aero v0.0.0-20190317230610-002df37963de/go.mod h1:LoT72YQFpidTdMYZ8TKOzxzV6uHGl6NrtHnKabWkKbg=
|
github.com/aerogo/aero v0.0.0-20190317230610-002df37963de/go.mod h1:LoT72YQFpidTdMYZ8TKOzxzV6uHGl6NrtHnKabWkKbg=
|
||||||
github.com/aerogo/aero v1.0.0 h1:+j0NbssyGtzLAnSB6sGEWyYX2qXxFkMHpI7TPbHJDFQ=
|
github.com/aerogo/aero v1.0.1 h1:9YpWV2YAzq1cidiGK/JD1W0Ub14U1Mwo8H3rZZeyO0M=
|
||||||
github.com/aerogo/aero v1.0.0/go.mod h1:LoT72YQFpidTdMYZ8TKOzxzV6uHGl6NrtHnKabWkKbg=
|
github.com/aerogo/aero v1.0.1/go.mod h1:5SEmHzcetTWlszMRfB44gZq+7iPScPOQYFMixr/wspg=
|
||||||
github.com/aerogo/api v0.1.0 h1:u1sqJWJS0cDKyopNpaOE10tVoIfL0rqZR929q9ESd2M=
|
github.com/aerogo/api v0.1.0 h1:u1sqJWJS0cDKyopNpaOE10tVoIfL0rqZR929q9ESd2M=
|
||||||
github.com/aerogo/api v0.1.0/go.mod h1:OVHGZDrfsM80Nr3biKxsvDHy9S/JKop/i2JS6QgI3qg=
|
github.com/aerogo/api v0.1.0/go.mod h1:OVHGZDrfsM80Nr3biKxsvDHy9S/JKop/i2JS6QgI3qg=
|
||||||
github.com/aerogo/cluster v0.1.0 h1:CZOY8ONzyRonu4tN2vLsAeZEME3vu2DlNhmuoAEgLQQ=
|
github.com/aerogo/cluster v0.1.0 h1:CZOY8ONzyRonu4tN2vLsAeZEME3vu2DlNhmuoAEgLQQ=
|
||||||
github.com/aerogo/cluster v0.1.0/go.mod h1:VjX1JXqDJzhiXrYPiV/Jbhd0CTrtD1C99lmuIP0+Fkc=
|
github.com/aerogo/cluster v0.1.0/go.mod h1:VjX1JXqDJzhiXrYPiV/Jbhd0CTrtD1C99lmuIP0+Fkc=
|
||||||
github.com/aerogo/crawler v0.1.0 h1:R1lmJXDaKLHfr6vOwGjfYSg4GodwkD2KX92ZMay7ZMo=
|
github.com/aerogo/crawler v0.1.0 h1:R1lmJXDaKLHfr6vOwGjfYSg4GodwkD2KX92ZMay7ZMo=
|
||||||
github.com/aerogo/crawler v0.1.0/go.mod h1:Yz0rvJBE0Cn6Qe2HDOkmlS+EeHOi99sp00ojpMIlwrA=
|
github.com/aerogo/crawler v0.1.0/go.mod h1:Yz0rvJBE0Cn6Qe2HDOkmlS+EeHOi99sp00ojpMIlwrA=
|
||||||
github.com/aerogo/csp v0.0.0-20180603005650-64635af78558 h1:hI+wJqFoJH/AuWDBxc3bPYXIPZ2e1YvQ1Z7LnUNfOX4=
|
|
||||||
github.com/aerogo/csp v0.0.0-20180603005650-64635af78558/go.mod h1:DHkDDUqlScJGntVPNQ1T9IizxyPV7Y48G3uFh4lmZCo=
|
github.com/aerogo/csp v0.0.0-20180603005650-64635af78558/go.mod h1:DHkDDUqlScJGntVPNQ1T9IizxyPV7Y48G3uFh4lmZCo=
|
||||||
github.com/aerogo/csp v0.1.0 h1:h7eLg7MsjIDaoh/dAdqDhjbq2BhYdPTKBpabm7E419U=
|
github.com/aerogo/csp v0.1.0 h1:h7eLg7MsjIDaoh/dAdqDhjbq2BhYdPTKBpabm7E419U=
|
||||||
github.com/aerogo/csp v0.1.0/go.mod h1:DHkDDUqlScJGntVPNQ1T9IizxyPV7Y48G3uFh4lmZCo=
|
github.com/aerogo/csp v0.1.0/go.mod h1:DHkDDUqlScJGntVPNQ1T9IizxyPV7Y48G3uFh4lmZCo=
|
||||||
github.com/aerogo/flow v0.1.0 h1:cNkyvJd5SWqqjBjMv7Gcic3WcOJ4jO6ChBwsxCO6n/I=
|
github.com/aerogo/flow v0.1.0 h1:cNkyvJd5SWqqjBjMv7Gcic3WcOJ4jO6ChBwsxCO6n/I=
|
||||||
github.com/aerogo/flow v0.1.0/go.mod h1:Xme0qoaHhTg7hHHxOfGozMsrhczXgNPZwFlglnmvBys=
|
github.com/aerogo/flow v0.1.0/go.mod h1:Xme0qoaHhTg7hHHxOfGozMsrhczXgNPZwFlglnmvBys=
|
||||||
github.com/aerogo/http v0.0.0-20180702004711-b85543a85b31/go.mod h1:KbJZtG4p2+/DcZ5clCq518alHGJgLB2OzPaZydqdNv4=
|
github.com/aerogo/http v0.0.0-20180702004711-b85543a85b31/go.mod h1:KbJZtG4p2+/DcZ5clCq518alHGJgLB2OzPaZydqdNv4=
|
||||||
github.com/aerogo/http v0.1.0 h1:1a1JjQ5umSAEVYmZ9C0P9iMp619IjCdHG/aXENdFHZI=
|
github.com/aerogo/http v0.1.1 h1:iAiWZVZTkogFJg1MYvhXyiBQSzODNf86M2/bpkZY3u0=
|
||||||
github.com/aerogo/http v0.1.0/go.mod h1:KbJZtG4p2+/DcZ5clCq518alHGJgLB2OzPaZydqdNv4=
|
github.com/aerogo/http v0.1.1/go.mod h1:biG/HWNyTuOlNiyQgGTw9Vg6QFpZf5f1qsGJAocmAsI=
|
||||||
github.com/aerogo/layout v0.1.0 h1:ugJ0bY+89zql7gB49tyzAzzggoTRLX3girllK6IQV3g=
|
github.com/aerogo/layout v0.1.0 h1:ugJ0bY+89zql7gB49tyzAzzggoTRLX3girllK6IQV3g=
|
||||||
github.com/aerogo/layout v0.1.0/go.mod h1:OtfnndPGTSoEcozT76BUG3MygH2ROZy4KudOHXHi1Jg=
|
github.com/aerogo/layout v0.1.0/go.mod h1:OtfnndPGTSoEcozT76BUG3MygH2ROZy4KudOHXHi1Jg=
|
||||||
github.com/aerogo/linter-performance v0.0.0-20171030054710-39aac8f4afac h1:YGTKsdOdjQt6lciU67AbiZ237bzzZVVeb1BlrFBOhBU=
|
|
||||||
github.com/aerogo/linter-performance v0.0.0-20171030054710-39aac8f4afac/go.mod h1:QvKa/bFrHWaEVDlCe/rgmoOfOwfQW+xf2Eg705Z0/P8=
|
github.com/aerogo/linter-performance v0.0.0-20171030054710-39aac8f4afac/go.mod h1:QvKa/bFrHWaEVDlCe/rgmoOfOwfQW+xf2Eg705Z0/P8=
|
||||||
|
github.com/aerogo/linter-performance v0.1.0 h1:xdYKDaPDVHdBG7j2VGb/x+UE+aGEiRsbMU17CiXNwTE=
|
||||||
|
github.com/aerogo/linter-performance v0.1.0/go.mod h1:GntsA2D+42qB8Pdm5Wbre9yrPz9vt/oxDXjmD9wnDns=
|
||||||
github.com/aerogo/log v0.1.0 h1:otBbDVX+eAFZfxKvmGvdbED3FXjHPEcZ5wku+UvLMhw=
|
github.com/aerogo/log v0.1.0 h1:otBbDVX+eAFZfxKvmGvdbED3FXjHPEcZ5wku+UvLMhw=
|
||||||
github.com/aerogo/log v0.1.0/go.mod h1:tmeuaeXCOX7zRaqIrBcGxOP5ERm7186i5EEJl7fn75s=
|
github.com/aerogo/log v0.1.0/go.mod h1:tmeuaeXCOX7zRaqIrBcGxOP5ERm7186i5EEJl7fn75s=
|
||||||
github.com/aerogo/markdown v0.1.0 h1:HH10M6k82KZ9/SCo6+CN1BNWawHGTbykPXQOa3dg6Ws=
|
github.com/aerogo/markdown v0.1.0 h1:HH10M6k82KZ9/SCo6+CN1BNWawHGTbykPXQOa3dg6Ws=
|
||||||
@ -38,11 +38,9 @@ github.com/aerogo/nano v0.1.0 h1:zW1xUUNOY3dK2nT9HN7FQu9UymS3HevEu+4fjnfXK9k=
|
|||||||
github.com/aerogo/nano v0.1.0/go.mod h1:vtpRS7b0VyUh+M9QXPV2+LY0IPyFLrIZTPdEqEZLWUM=
|
github.com/aerogo/nano v0.1.0/go.mod h1:vtpRS7b0VyUh+M9QXPV2+LY0IPyFLrIZTPdEqEZLWUM=
|
||||||
github.com/aerogo/packet v0.1.0 h1:1rIiXgzKLhsSy89E3D6KnTxtsm6JC195Vcyu/srwTGc=
|
github.com/aerogo/packet v0.1.0 h1:1rIiXgzKLhsSy89E3D6KnTxtsm6JC195Vcyu/srwTGc=
|
||||||
github.com/aerogo/packet v0.1.0/go.mod h1:WfmAe/s1bxZIoIgckTFAM4mq6HErVwJoe49kWF/UKQo=
|
github.com/aerogo/packet v0.1.0/go.mod h1:WfmAe/s1bxZIoIgckTFAM4mq6HErVwJoe49kWF/UKQo=
|
||||||
github.com/aerogo/session v0.0.0-20180420202241-a12fa6c80cdc h1:4azR35M9r5MAdGY9h1w9eMBVR7SJJkXCXNwl1ZS8D3A=
|
|
||||||
github.com/aerogo/session v0.0.0-20180420202241-a12fa6c80cdc/go.mod h1:Px2DpU6eBU919Z1tl39VLcLk9ooSOJbohJItGSAH/2M=
|
github.com/aerogo/session v0.0.0-20180420202241-a12fa6c80cdc/go.mod h1:Px2DpU6eBU919Z1tl39VLcLk9ooSOJbohJItGSAH/2M=
|
||||||
github.com/aerogo/session v0.1.0 h1:dx1BJ6V9+aHBIOjpu9jK4VncPee2GccqVUqWaVuSxsM=
|
github.com/aerogo/session v0.1.1 h1:NBy3+fPwyHAzollumyqptLIyLjFyHuIwYDcQOll7UVE=
|
||||||
github.com/aerogo/session v0.1.0/go.mod h1:Px2DpU6eBU919Z1tl39VLcLk9ooSOJbohJItGSAH/2M=
|
github.com/aerogo/session v0.1.1/go.mod h1:A4S5dvAhpm+DRdQbno5Rn4Jvj0UVGJmOUKQXataNIDg=
|
||||||
github.com/aerogo/session-store-memory v0.0.0-20170617203530-999e407f99d2 h1:VJxTiIzFztK+7zF5hrLQ2TV5OB3NHsSxzEONqbJMmIA=
|
|
||||||
github.com/aerogo/session-store-memory v0.0.0-20170617203530-999e407f99d2/go.mod h1:5FTLBWv0+sgrkcyLkW7NWVyW6VYgUbfTLZVF3y+xcl4=
|
github.com/aerogo/session-store-memory v0.0.0-20170617203530-999e407f99d2/go.mod h1:5FTLBWv0+sgrkcyLkW7NWVyW6VYgUbfTLZVF3y+xcl4=
|
||||||
github.com/aerogo/session-store-memory v0.1.0 h1:oG8YYC+xuq6V0Z02eRpxbXI4HA9/HJo8Si1AwR/2ssU=
|
github.com/aerogo/session-store-memory v0.1.0 h1:oG8YYC+xuq6V0Z02eRpxbXI4HA9/HJo8Si1AwR/2ssU=
|
||||||
github.com/aerogo/session-store-memory v0.1.0/go.mod h1:5FTLBWv0+sgrkcyLkW7NWVyW6VYgUbfTLZVF3y+xcl4=
|
github.com/aerogo/session-store-memory v0.1.0/go.mod h1:5FTLBWv0+sgrkcyLkW7NWVyW6VYgUbfTLZVF3y+xcl4=
|
||||||
@ -54,8 +52,8 @@ github.com/andybalholm/cascadia v1.0.0 h1:hOCXnnZ5A+3eVDX8pvgl4kofXv2ELss0bKcqRy
|
|||||||
github.com/andybalholm/cascadia v1.0.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y=
|
github.com/andybalholm/cascadia v1.0.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y=
|
||||||
github.com/animenotifier/anilist v0.0.0-20190305235615-d1d5baf3760a h1:vEYWNIsi5TRRjfBVLKDUdQLCcqV7fvTOEFtCOO0GJpE=
|
github.com/animenotifier/anilist v0.0.0-20190305235615-d1d5baf3760a h1:vEYWNIsi5TRRjfBVLKDUdQLCcqV7fvTOEFtCOO0GJpE=
|
||||||
github.com/animenotifier/anilist v0.0.0-20190305235615-d1d5baf3760a/go.mod h1:i4CfOYnA7J3413w8AhRJkrmky/7t+827W0lJ3A28JHQ=
|
github.com/animenotifier/anilist v0.0.0-20190305235615-d1d5baf3760a/go.mod h1:i4CfOYnA7J3413w8AhRJkrmky/7t+827W0lJ3A28JHQ=
|
||||||
github.com/animenotifier/arn v1.0.1 h1:J6tRb8fPsNfTktopvfKxN2mt5X4sXHEFaqj2vsivWvM=
|
github.com/animenotifier/arn v1.0.2 h1:PkSega2NxjRXciwcH8yOdnG9h4SEp3pwafJjlg+uRu0=
|
||||||
github.com/animenotifier/arn v1.0.1/go.mod h1:obkx/idH52al/q9qhX4yeanxT2ZYQ8hqNHRtGaqhcMA=
|
github.com/animenotifier/arn v1.0.2/go.mod h1:ZN8dOCyGWLWQocdezgnk3aN3kjjlvcmrmnu09cdI+bY=
|
||||||
github.com/animenotifier/ffxiv v0.0.0-20181026222628-4707c5739ff1 h1:nHYxZmkB79cBr/fNrYxoY0k1a8qcDT1rIItwnwKFGP0=
|
github.com/animenotifier/ffxiv v0.0.0-20181026222628-4707c5739ff1 h1:nHYxZmkB79cBr/fNrYxoY0k1a8qcDT1rIItwnwKFGP0=
|
||||||
github.com/animenotifier/ffxiv v0.0.0-20181026222628-4707c5739ff1/go.mod h1:oBHhRzQAUv+dBe4qFJAFnTg7qv5Gl6QFHQphyJla74Q=
|
github.com/animenotifier/ffxiv v0.0.0-20181026222628-4707c5739ff1/go.mod h1:oBHhRzQAUv+dBe4qFJAFnTg7qv5Gl6QFHQphyJla74Q=
|
||||||
github.com/animenotifier/japanese v0.0.0-20180702005159-9ae021c00c3c h1:P/18+VJ+UmhxYBCQLAA/7hiqhvWLQqLyIoDCIi99JNA=
|
github.com/animenotifier/japanese v0.0.0-20180702005159-9ae021c00c3c h1:P/18+VJ+UmhxYBCQLAA/7hiqhvWLQqLyIoDCIi99JNA=
|
||||||
@ -72,6 +70,8 @@ github.com/animenotifier/shoboi v0.0.0-20180321032539-68de8dd8046b h1:zf+8+W7alD
|
|||||||
github.com/animenotifier/shoboi v0.0.0-20180321032539-68de8dd8046b/go.mod h1:INza8m3u3SUYOM72LXtClNmyjGmgz1VyJb/aCzwtXJU=
|
github.com/animenotifier/shoboi v0.0.0-20180321032539-68de8dd8046b/go.mod h1:INza8m3u3SUYOM72LXtClNmyjGmgz1VyJb/aCzwtXJU=
|
||||||
github.com/animenotifier/twist v0.0.0-20171021152718-743481a0ebff h1:+RQT0v57iIDMp7eqCG3FvUiXmGYThViebn0A200Igv0=
|
github.com/animenotifier/twist v0.0.0-20171021152718-743481a0ebff h1:+RQT0v57iIDMp7eqCG3FvUiXmGYThViebn0A200Igv0=
|
||||||
github.com/animenotifier/twist v0.0.0-20171021152718-743481a0ebff/go.mod h1:c6gK23vt2wFRkWkEnPSANb5P0LwfSmhuR8rk5+rBlbw=
|
github.com/animenotifier/twist v0.0.0-20171021152718-743481a0ebff/go.mod h1:c6gK23vt2wFRkWkEnPSANb5P0LwfSmhuR8rk5+rBlbw=
|
||||||
|
github.com/blitzprog/color v1.8.0 h1:57b411KxdU2PpTMUWzxvm8FNwFSZCub9iAHyynlshEY=
|
||||||
|
github.com/blitzprog/color v1.8.0/go.mod h1:BT0yhtwPpduwijxx6kUHHv79qgJyuLdOehYyeL6Y2b4=
|
||||||
github.com/blitzprog/go-matroska v0.0.0-20181027234721-1748ad65794d h1:uRRVrQddnOknwN+Ms/daO3hzNF5UzuKOm6kv4GjwB8o=
|
github.com/blitzprog/go-matroska v0.0.0-20181027234721-1748ad65794d h1:uRRVrQddnOknwN+Ms/daO3hzNF5UzuKOm6kv4GjwB8o=
|
||||||
github.com/blitzprog/go-matroska v0.0.0-20181027234721-1748ad65794d/go.mod h1:5Q6gAPJYxcIZQIbSQ9LEAbqA19XBPlten2jS+6ndcEo=
|
github.com/blitzprog/go-matroska v0.0.0-20181027234721-1748ad65794d/go.mod h1:5Q6gAPJYxcIZQIbSQ9LEAbqA19XBPlten2jS+6ndcEo=
|
||||||
github.com/blitzprog/imageoutput v0.0.0-20180723015600-be0e2c52cd9e h1:43CYlb4yAPqd8jHNXGAYGOSYDyiQwuuV4lnRdi3KcG4=
|
github.com/blitzprog/imageoutput v0.0.0-20180723015600-be0e2c52cd9e h1:43CYlb4yAPqd8jHNXGAYGOSYDyiQwuuV4lnRdi3KcG4=
|
||||||
@ -84,8 +84,6 @@ github.com/chai2010/webp v1.1.0 h1:4Ei0/BRroMF9FaXDG2e4OxwFcuW2vcXd+A6tyqTJUQQ=
|
|||||||
github.com/chai2010/webp v1.1.0/go.mod h1:LP12PG5IFmLGHUU26tBiCBKnghxx3toZFwDjOYvd3Ow=
|
github.com/chai2010/webp v1.1.0/go.mod h1:LP12PG5IFmLGHUU26tBiCBKnghxx3toZFwDjOYvd3Ow=
|
||||||
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
|
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
|
||||||
github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
|
||||||
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
|
||||||
github.com/disintegration/imaging v1.6.0 h1:nVPXRUUQ36Z7MNf0O77UzgnOb1mkMMor7lmJMJXc/mA=
|
github.com/disintegration/imaging v1.6.0 h1:nVPXRUUQ36Z7MNf0O77UzgnOb1mkMMor7lmJMJXc/mA=
|
||||||
@ -108,8 +106,6 @@ github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
|
|||||||
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=
|
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=
|
||||||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
|
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
|
||||||
github.com/gopherjs/gopherjs v0.0.0-20190328170749-bb2674552d8f h1:4Gslotqbs16iAg+1KR/XdabIfq8TlAWHdwS5QJFksLc=
|
|
||||||
github.com/gopherjs/gopherjs v0.0.0-20190328170749-bb2674552d8f/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
|
|
||||||
github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=
|
github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=
|
||||||
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
|
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
|
||||||
github.com/graphql-go/graphql v0.7.8 h1:769CR/2JNAhLG9+aa8pfLkKdR0H+r5lsQqling5WwpU=
|
github.com/graphql-go/graphql v0.7.8 h1:769CR/2JNAhLG9+aa8pfLkKdR0H+r5lsQqling5WwpU=
|
||||||
@ -122,12 +118,8 @@ github.com/julienschmidt/httprouter v1.2.0 h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+
|
|||||||
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
|
github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
|
||||||
github.com/klauspost/compress v1.4.0 h1:8nsMz3tWa9SWWPL60G1V6CUsf4lLjWLTNEtibhe8gh8=
|
github.com/klauspost/compress v1.4.0 h1:8nsMz3tWa9SWWPL60G1V6CUsf4lLjWLTNEtibhe8gh8=
|
||||||
github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
|
github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
|
||||||
github.com/klauspost/compress v1.4.1 h1:8VMb5+0wMgdBykOV96DwNwKFQ+WTI4pzYURP99CcB9E=
|
|
||||||
github.com/klauspost/compress v1.4.1/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
|
|
||||||
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e h1:+lIPJOWl+jSiJOc70QXJ07+2eg2Jy2EC7Mi11BWujeM=
|
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e h1:+lIPJOWl+jSiJOc70QXJ07+2eg2Jy2EC7Mi11BWujeM=
|
||||||
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
|
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
|
||||||
github.com/klauspost/cpuid v1.2.0 h1:NMpwD2G9JSFOE1/TJjGSo5zG7Yb2bTe7eq1jH+irmeE=
|
|
||||||
github.com/klauspost/cpuid v1.2.0/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
|
|
||||||
github.com/logpacker/PayPal-Go-SDK v1.1.4+incompatible h1:lP/w7P9VGvpcXlejs3+bll3TcLWulYifJhhNUmi17d4=
|
github.com/logpacker/PayPal-Go-SDK v1.1.4+incompatible h1:lP/w7P9VGvpcXlejs3+bll3TcLWulYifJhhNUmi17d4=
|
||||||
github.com/logpacker/PayPal-Go-SDK v1.1.4+incompatible/go.mod h1:DUf5ncyG0n3jFnU9VsuQqe/Vo6KHtWQ6HYf80JwP4rY=
|
github.com/logpacker/PayPal-Go-SDK v1.1.4+incompatible/go.mod h1:DUf5ncyG0n3jFnU9VsuQqe/Vo6KHtWQ6HYf80JwP4rY=
|
||||||
github.com/mattn/go-colorable v0.1.1 h1:G1f5SKeVxmagw/IyvzvtZE4Gybcc4Tr1tf7I8z0XgOg=
|
github.com/mattn/go-colorable v0.1.1 h1:G1f5SKeVxmagw/IyvzvtZE4Gybcc4Tr1tf7I8z0XgOg=
|
||||||
@ -171,10 +163,8 @@ github.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5I
|
|||||||
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
|
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
|
||||||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=
|
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=
|
||||||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
|
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
|
||||||
github.com/smartystreets/assertions v0.0.0-20190215210624-980c5ac6f3ac h1:wbW+Bybf9pXxnCFAOWZTqkRjAc7rAIwo2e1ArUhiHxg=
|
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a h1:pa8hGb/2YqsZKovtsgrwcDH1RZhVbTKCjLp47XpqCDs=
|
||||||
github.com/smartystreets/assertions v0.0.0-20190215210624-980c5ac6f3ac/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
|
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA=
|
||||||
github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff h1:86HlEv0yBCry9syNuylzqznKXDK11p6D0DT596yNMys=
|
|
||||||
github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff/go.mod h1:KSQcGKpxUMHk3nbYzs/tIBAM2iDooCn0BmttHOJEbLs=
|
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
|
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
|
||||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||||
@ -209,17 +199,14 @@ golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c h1:Vj5n4GlwjmQteupaxJ9+0F
|
|||||||
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 h1:00VmoueYNlNz/aHIilyyQz/MHSqGoWJzpFv/HW8xpzI=
|
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 h1:00VmoueYNlNz/aHIilyyQz/MHSqGoWJzpFv/HW8xpzI=
|
||||||
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs=
|
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs=
|
||||||
golang.org/x/image v0.0.0-20190321063152-3fc05d484e9f h1:FO4MZ3N56GnxbqxGKqh+YTzUWQ2sDwtFQEZgLOxh9Jc=
|
|
||||||
golang.org/x/image v0.0.0-20190321063152-3fc05d484e9f/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
|
|
||||||
golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20180911220305-26e67e76b6c3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20180911220305-26e67e76b6c3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e h1:bRhVy7zSSasaqNksaRZiA5EEI+Ei4I1nO5Jh72wfHlg=
|
|
||||||
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20190328230028-74de082e2cca h1:hyA6yiAgbUwuWqtscNvWAI7U1CtlaD1KilQ6iudt1aI=
|
golang.org/x/net v0.0.0-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=
|
||||||
golang.org/x/net v0.0.0-20190328230028-74de082e2cca/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914 h1:jIOcLT9BZzyJ9ce+IwwZ+aF9yeCqzrR+NrD68a/SHKw=
|
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914 h1:jIOcLT9BZzyJ9ce+IwwZ+aF9yeCqzrR+NrD68a/SHKw=
|
||||||
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
@ -228,10 +215,9 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ
|
|||||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=
|
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=
|
||||||
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20190329044733-9eb1bfa1ce65 h1:hOY+O8MxdkPV10pNf7/XEHaySCiPKxixMKUshfHsGn0=
|
|
||||||
golang.org/x/sys v0.0.0-20190329044733-9eb1bfa1ce65/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
|
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
||||||
google.golang.org/appengine v1.4.0 h1:/wp5JvzpHIxhs/dumFmF7BXTf3Z+dd4uXta4kVyO508=
|
google.golang.org/appengine v1.4.0 h1:/wp5JvzpHIxhs/dumFmF7BXTf3Z+dd4uXta4kVyO508=
|
||||||
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
||||||
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk=
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk=
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/aerogo/aero"
|
"github.com/aerogo/aero"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/notify.moe/utils/gql"
|
"github.com/animenotifier/notify.moe/utils/gql"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
"github.com/graphql-go/graphql"
|
"github.com/graphql-go/graphql"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var ratings = map[string][]arn.AnimeListItemRating{}
|
var ratings = map[string][]arn.AnimeListItemRating{}
|
||||||
|
@ -11,7 +11,7 @@ import (
|
|||||||
|
|
||||||
"github.com/aerogo/http/client"
|
"github.com/aerogo/http/client"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -11,7 +11,7 @@ import (
|
|||||||
|
|
||||||
"github.com/aerogo/log"
|
"github.com/aerogo/log"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var colorPool = []*color.Color{
|
var colorPool = []*color.Color{
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/kitsu"
|
"github.com/animenotifier/kitsu"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/kitsu"
|
"github.com/animenotifier/kitsu"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/kitsu"
|
"github.com/animenotifier/kitsu"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/animenotifier/arn/osutils"
|
"github.com/animenotifier/arn/osutils"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
|
|
||||||
"github.com/aerogo/crawler"
|
"github.com/aerogo/crawler"
|
||||||
)
|
)
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/mal"
|
"github.com/animenotifier/mal"
|
||||||
"github.com/animenotifier/mal/parser"
|
"github.com/animenotifier/mal/parser"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Read anime file
|
// Read anime file
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/mal/parser"
|
"github.com/animenotifier/mal/parser"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Read character file
|
// Read character file
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func parseCharacterDescription(input string) (output string, attributes []*arn.CharacterAttribute) {
|
func parseCharacterDescription(input string) (output string, attributes []*arn.CharacterAttribute) {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/mal"
|
"github.com/animenotifier/mal"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
const imageWidthThreshold = 225
|
const imageWidthThreshold = 225
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"github.com/aerogo/http/client"
|
"github.com/aerogo/http/client"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/mal"
|
"github.com/animenotifier/mal"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Sync titles
|
// Sync titles
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/stringutils"
|
"github.com/animenotifier/arn/stringutils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var tickerFFXIV = time.NewTicker(1100 * time.Millisecond)
|
var tickerFFXIV = time.NewTicker(1100 * time.Millisecond)
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/stringutils"
|
"github.com/animenotifier/arn/stringutils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var tickerOsu = time.NewTicker(500 * time.Millisecond)
|
var tickerOsu = time.NewTicker(500 * time.Millisecond)
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/stringutils"
|
"github.com/animenotifier/arn/stringutils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var tickerOW = time.NewTicker(1100 * time.Millisecond)
|
var tickerOW = time.NewTicker(1100 * time.Millisecond)
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
|
|
||||||
"github.com/animenotifier/kitsu"
|
"github.com/animenotifier/kitsu"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/shoboi"
|
"github.com/animenotifier/shoboi"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var packages = []string{
|
var packages = []string{
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/twist"
|
"github.com/animenotifier/twist"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var rateLimiter = time.NewTicker(500 * time.Millisecond)
|
var rateLimiter = time.NewTicker(500 * time.Millisecond)
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
"github.com/aerogo/http/client"
|
"github.com/aerogo/http/client"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/notify.moe/utils"
|
"github.com/animenotifier/notify.moe/utils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
"github.com/mssola/user_agent"
|
"github.com/mssola/user_agent"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/notify.moe/components"
|
"github.com/animenotifier/notify.moe/components"
|
||||||
"github.com/animenotifier/notify.moe/utils"
|
"github.com/animenotifier/notify.moe/utils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// UserRegistrations ...
|
// UserRegistrations ...
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/animenotifier/kitsu"
|
"github.com/animenotifier/kitsu"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/autodocs"
|
"github.com/animenotifier/arn/autodocs"
|
||||||
"github.com/animenotifier/notify.moe/components"
|
"github.com/animenotifier/notify.moe/components"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Get api page.
|
// Get api page.
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/notify.moe/components"
|
"github.com/animenotifier/notify.moe/components"
|
||||||
"github.com/animenotifier/notify.moe/utils"
|
"github.com/animenotifier/notify.moe/utils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"html"
|
"html"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"flag"
|
"flag"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Shell parameters
|
// Shell parameters
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
|
|
||||||
"github.com/aerogo/nano"
|
"github.com/aerogo/nano"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"flag"
|
"flag"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Shell parameters
|
// Shell parameters
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/autocorrect"
|
"github.com/animenotifier/arn/autocorrect"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/mal"
|
"github.com/animenotifier/mal"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var malDB = arn.Node.Namespace("mal").RegisterTypes((*mal.Anime)(nil))
|
var malDB = arn.Node.Namespace("mal").RegisterTypes((*mal.Anime)(nil))
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -14,7 +14,7 @@ import (
|
|||||||
|
|
||||||
"github.com/aerogo/http/client"
|
"github.com/aerogo/http/client"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var ticker = time.NewTicker(50 * time.Millisecond)
|
var ticker = time.NewTicker(50 * time.Millisecond)
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
const maxNotificationsPerUser = 30
|
const maxNotificationsPerUser = 30
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -3,7 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/autocorrect"
|
"github.com/animenotifier/arn/autocorrect"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -10,7 +10,7 @@ import (
|
|||||||
"path"
|
"path"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"path"
|
"path"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
"path"
|
"path"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
|
|
||||||
icolor "image/color"
|
icolor "image/color"
|
||||||
_ "image/gif"
|
_ "image/gif"
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Shell parameters
|
// Shell parameters
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -3,7 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/animenotifier/arn/stringutils"
|
"github.com/animenotifier/arn/stringutils"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"flag"
|
"flag"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Shell parameters
|
// Shell parameters
|
||||||
|
@ -4,7 +4,7 @@ import (
|
|||||||
"regexp"
|
"regexp"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var flaggedWords = regexp.MustCompile("fuck|fucking|freaking|shit|bad|terrible|awful|wtf")
|
var flaggedWords = regexp.MustCompile("fuck|fucking|freaking|shit|bad|terrible|awful|wtf")
|
||||||
|
2
ports.go
2
ports.go
@ -6,7 +6,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// testConnectivity will test if port 443 is accessible or not.
|
// testConnectivity will test if port 443 is accessible or not.
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
"github.com/aerogo/aero"
|
"github.com/aerogo/aero"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
func configureHTTPS(app *aero.Application) {
|
func configureHTTPS(app *aero.Application) {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/blitzprog/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
// JobInfo gives you information about a background job.
|
// JobInfo gives you information about a background job.
|
||||||
|
Loading…
Reference in New Issue
Block a user