├── .gitignore ├── LICENSE ├── README.md ├── README_ZH.md ├── _syso ├── favicon.ico ├── favicon.manifest ├── favicon.png ├── favicon.syso ├── index.css ├── index.html ├── jquery.githubRepoWidget2.js ├── jquery.min.js ├── jquery.min.map └── syso.go ├── acceptencoder ├── acceptencoder.go └── acceptencoder_test.go ├── apidoc.go ├── apiware ├── .gitignore ├── LICENSE ├── README.md ├── apiware.go ├── convert.go ├── doc.go ├── error.go ├── param.go ├── param_test.go ├── paramapi.go ├── paramapi_test.go ├── util.go └── util_test.go ├── config.go ├── config_test.go ├── context.go ├── context_input.go ├── context_output.go ├── doc.go ├── doc ├── MultiUsage.png ├── apidoc.png ├── faygo_48x48.ico ├── faygo_96x96.png ├── index.png └── server.png ├── ext ├── barcode │ ├── LICENSE │ ├── README.md │ ├── barcode.go │ ├── codabar │ │ ├── encoder.go │ │ └── encoder_test.go │ ├── code128 │ │ ├── encode.go │ │ ├── encode_test.go │ │ └── encodingtable.go │ ├── code39 │ │ └── encoder.go │ ├── datamatrix │ │ ├── codelayout.go │ │ ├── codesize.go │ │ ├── datamatrixcode.go │ │ ├── encoder.go │ │ ├── errorcorrection.go │ │ └── errorcorrection_test.go │ ├── ean │ │ ├── encoder.go │ │ └── encoder_test.go │ ├── qr │ │ ├── alphanumeric.go │ │ ├── alphanumeric_test.go │ │ ├── automatic.go │ │ ├── automatic_test.go │ │ ├── blocks.go │ │ ├── blocks_test.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── errorcorrection.go │ │ ├── errorcorrection_test.go │ │ ├── helper.go │ │ ├── numeric.go │ │ ├── numeric_test.go │ │ ├── qrcode.go │ │ ├── qrcode_test.go │ │ ├── unicode.go │ │ ├── unicode_test.go │ │ ├── versioninfo.go │ │ └── versioninfo_test.go │ ├── scaledbarcode.go │ ├── twooffive │ │ ├── encoder.go │ │ └── encoder_test.go │ └── utils │ │ ├── base1dcode.go │ │ ├── bitlist.go │ │ ├── galoisfield.go │ │ ├── galoisfield_test.go │ │ ├── gfpoly.go │ │ ├── runeint.go │ │ └── runeint_test.go ├── bitconv │ ├── bitconv.go │ └── bitconv_test.go ├── cron │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── constantdelay.go │ ├── constantdelay_test.go │ ├── cron.go │ ├── cron_test.go │ ├── doc.go │ ├── parser.go │ ├── parser_test.go │ ├── spec.go │ └── spec_test.go ├── db │ ├── directsql │ │ ├── README.md │ │ ├── checkparameter.go │ │ ├── resultcache.go │ │ ├── snowflake.go │ │ ├── sqlcontext.go │ │ ├── sqlengine.go │ │ ├── sqlhandle.go │ │ ├── sqlhelper.go │ │ ├── sqlmanage.go │ │ ├── sqlrouter.go │ │ ├── sqlservice.go │ │ └── sqlwatcher.go │ ├── directsqlx │ │ ├── README.md │ │ ├── checkparameter.go │ │ ├── resultcache.go │ │ ├── sqlcontext.go │ │ ├── sqlengine.go │ │ ├── sqlhandle.go │ │ ├── sqlhelper.go │ │ ├── sqlmanage.go │ │ ├── sqlrouter.go │ │ ├── sqlservice.go │ │ └── sqlwatcher.go │ ├── gorm │ │ ├── config.go │ │ ├── config_test.go │ │ ├── helper.go │ │ └── service.go │ ├── sqlx │ │ ├── config.go │ │ ├── config_test.go │ │ ├── helper.go │ │ └── service.go │ └── xorm │ │ ├── config.go │ │ ├── config_test.go │ │ ├── helper.go │ │ ├── logger.go │ │ └── service.go ├── middleware │ ├── attachment.go │ ├── cross_origin.go │ ├── html_suffix.go │ ├── ip_filter.go │ └── jwt │ │ ├── jwt.go │ │ └── sample │ │ ├── config │ │ ├── __global___.ini │ │ └── jwt-test.ini │ │ ├── log │ │ └── app.pid │ │ ├── run.http │ │ └── server.go ├── otp │ ├── .travis.yml │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── doc.go │ ├── example │ │ └── main.go │ ├── hotp │ │ ├── hotp.go │ │ └── hotp_test.go │ ├── otp.go │ ├── otp_test.go │ └── totp │ │ ├── totp.go │ │ └── totp_test.go ├── surfer │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── README_ZH.md │ ├── agent.go │ ├── agent_bsd.go │ ├── agent_linux.go │ ├── agent_linux_arm.go │ ├── agent_windows.go │ ├── body.go │ ├── example │ │ └── example.go │ ├── phantom.go │ ├── request.go │ ├── surf.go │ ├── surfer.go │ ├── surfer_test.go │ └── util.go ├── task │ ├── README.md │ └── task.go ├── uuid │ ├── dce.go │ ├── doc.go │ ├── hash.go │ ├── json_test.go │ ├── marshal.go │ ├── node.go │ ├── seq_test.go │ ├── sql.go │ ├── sql_test.go │ ├── time.go │ ├── util.go │ ├── uuid.go │ ├── uuid_test.go │ ├── version1.go │ └── version4.go └── websocket │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── client.go │ ├── client_server_test.go │ ├── client_test.go │ ├── compression.go │ ├── compression_test.go │ ├── conn.go │ ├── conn_read.go │ ├── conn_read_legacy.go │ ├── conn_test.go │ ├── doc.go │ ├── example_test.go │ ├── examples │ ├── autobahn │ │ ├── README.md │ │ ├── fuzzingclient.json │ │ └── server.go │ ├── chat │ │ ├── README.md │ │ ├── client.go │ │ ├── home.html │ │ ├── hub.go │ │ └── main.go │ ├── command │ │ ├── README.md │ │ ├── home.html │ │ └── main.go │ ├── echo │ │ ├── README.md │ │ ├── client.go │ │ └── server.go │ └── filewatch │ │ ├── README.md │ │ └── main.go │ ├── helper.go │ ├── json.go │ ├── json_test.go │ ├── mask.go │ ├── mask_test.go │ ├── server.go │ ├── server_test.go │ ├── util.go │ └── util_test.go ├── faygo.go ├── faygo_test.go ├── framework.go ├── freecache ├── LICENSE ├── README.md ├── cache.go ├── cache_test.go ├── murmur3 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── murmur.go │ ├── murmur128.go │ ├── murmur32.go │ ├── murmur64.go │ └── murmur_test.go ├── ringbuf.go ├── ringbuf_test.go ├── segment.go └── server │ └── main.go ├── fs.go ├── go.mod ├── go.sum ├── graceful_a.go ├── graceful_b.go ├── gracenet ├── net.go └── net_test.go ├── handler.go ├── helper.go ├── helper_test.go ├── log.go ├── log └── app.pid ├── logging ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── backend.go ├── color │ ├── color.go │ ├── colorable_others.go │ ├── colorable_windows.go │ ├── isatty_appengine.go │ ├── isatty_bsd.go │ ├── isatty_linux.go │ ├── isatty_solaris.go │ └── isatty_windows.go ├── console.go ├── console_test.go ├── example_test.go ├── examples │ ├── example.go │ └── example.png ├── file.go ├── file_test.go ├── format.go ├── format_test.go ├── level.go ├── level_test.go ├── logger.go ├── logger_test.go ├── memory.go ├── memory_test.go ├── multi.go └── multi_test.go ├── markdown ├── LICENSE.txt ├── README.md ├── block.go ├── block_test.go ├── github.css.go ├── github.go ├── html.go ├── inline.go ├── inline_test.go ├── latex.go ├── markdown.go ├── ref_test.go └── smartypants.go ├── mime.go ├── muxapi.go ├── pongo2 ├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── context.go ├── doc.go ├── docs │ ├── examples.md │ ├── filters.md │ ├── index.md │ ├── macros.md │ ├── tags.md │ ├── template_sets.md │ ├── write_filters.md │ └── write_tags.md ├── error.go ├── filters.go ├── filters_builtin.go ├── helpers.go ├── lexer.go ├── nodes.go ├── nodes_html.go ├── nodes_wrapper.go ├── parser.go ├── parser_document.go ├── parser_expression.go ├── pongo2.go ├── pongo2_template_test.go ├── pongo2_test.go ├── tags.go ├── tags_autoescape.go ├── tags_block.go ├── tags_comment.go ├── tags_cycle.go ├── tags_extends.go ├── tags_filter.go ├── tags_firstof.go ├── tags_for.go ├── tags_if.go ├── tags_ifchanged.go ├── tags_ifequal.go ├── tags_ifnotequal.go ├── tags_import.go ├── tags_include.go ├── tags_lorem.go ├── tags_macro.go ├── tags_now.go ├── tags_set.go ├── tags_spaceless.go ├── tags_ssi.go ├── tags_templatetag.go ├── tags_widthratio.go ├── tags_with.go ├── template.go ├── template_loader.go ├── template_sets.go ├── template_tests │ ├── autoescape.tpl │ ├── autoescape.tpl.out │ ├── base_dir_test │ │ ├── base.html │ │ └── subdir │ │ │ ├── include.html │ │ │ ├── index.html │ │ │ └── ssi.html │ ├── comment.tpl │ ├── comment.tpl.out │ ├── complex.tpl │ ├── complex.tpl.out │ ├── cycle.tpl │ ├── cycle.tpl.out │ ├── empty.tpl │ ├── empty.tpl.out │ ├── expressions.tpl │ ├── expressions.tpl.out │ ├── extends.tpl │ ├── extends.tpl.out │ ├── extends_super.tpl │ ├── extends_super.tpl.out │ ├── extends_super2.tpl │ ├── extends_super2.tpl.out │ ├── filters-compilation.err │ ├── filters-compilation.err.out │ ├── filters-execution.err │ ├── filters-execution.err.out │ ├── filters.tpl │ ├── filters.tpl.out │ ├── firstof.tpl │ ├── firstof.tpl.out │ ├── for.tpl │ ├── for.tpl.out │ ├── function_calls_wrapper.tpl │ ├── function_calls_wrapper.tpl.out │ ├── if.tpl │ ├── if.tpl.out │ ├── ifchanged.tpl │ ├── ifchanged.tpl.out │ ├── includes.helper │ ├── includes.tpl │ ├── includes.tpl.out │ ├── inheritance │ │ ├── base.tpl │ │ ├── base2.tpl │ │ ├── cycle_include.tpl │ │ └── inheritance2 │ │ │ └── skeleton.tpl │ ├── issues.tpl │ ├── issues.tpl.out │ ├── lorem.tpl │ ├── lorem.tpl.out │ ├── macro-compilation.err │ ├── macro-compilation.err.out │ ├── macro-execution.err │ ├── macro-execution.err.out │ ├── macro.helper │ ├── macro.tpl │ ├── macro.tpl.out │ ├── macro2.helper │ ├── now.tpl │ ├── now.tpl.out │ ├── pongo2ctx.tpl │ ├── pongo2ctx.tpl.out │ ├── sandbox-compilation.err │ ├── sandbox-compilation.err.out │ ├── sandbox.tpl │ ├── sandbox.tpl.out │ ├── set.tpl │ ├── set.tpl.out │ ├── spaceless.tpl │ ├── spaceless.tpl.out │ ├── ssi.helper │ ├── ssi.tpl │ ├── ssi.tpl.out │ ├── tag_filter.tpl │ ├── tag_filter.tpl.out │ ├── tags-compilation.err │ ├── tags-compilation.err.out │ ├── template_sets.tpl │ ├── template_sets.tpl.out │ ├── templatetag.tpl │ ├── templatetag.tpl.out │ ├── variables-execution.err │ ├── variables-execution.err.out │ ├── variables.tpl │ ├── variables.tpl.out │ ├── verbatim.tpl │ ├── verbatim.tpl.out │ ├── widthratio.tpl │ ├── widthratio.tpl.out │ ├── with.helper │ ├── with.tpl │ └── with.tpl.out ├── value.go └── variable.go ├── render_pongo2.go ├── response_writer.go ├── samples ├── MultiUsage │ ├── config │ │ ├── __global___.ini │ │ ├── myapp_1.0.ini │ │ └── xorm.ini │ ├── main.go │ └── upload │ │ └── henrylee.jpg ├── demo │ ├── clienttest │ │ └── testclient.go │ ├── config │ │ ├── __global___.ini │ │ ├── cert.pem │ │ ├── key.pem │ │ ├── myapp1_1.0.ini │ │ └── myapp2_1.0.ini │ ├── handler │ │ ├── body.go │ │ ├── param.go │ │ ├── proxy.go │ │ ├── render.go │ │ └── websocket.go │ ├── main.go │ ├── middleware │ │ └── index.go │ ├── router │ │ └── router.go │ └── static │ │ ├── cross.html │ │ ├── jQuery-2.1.4.min.js │ │ ├── markdown │ │ ├── README.md │ │ └── README.txt │ │ ├── public │ │ └── index.txt │ │ ├── render.html │ │ ├── renderfs │ │ ├── index.html │ │ └── index.txt │ │ ├── websocket.html │ │ └── websocket.js ├── directsql │ ├── README.MD │ ├── common │ │ └── pongo2func.go │ ├── config │ │ ├── __global___.ini │ │ ├── directsql.ini │ │ ├── directsqldemo_1.0.ini │ │ └── xorm.ini │ ├── handler │ │ └── index.go │ ├── main.go │ ├── model │ │ └── demo.msql │ ├── router │ │ └── router.go │ ├── static │ │ └── jQuery-2.1.4.min.js │ ├── sys_user.sql │ └── view │ │ ├── index.html │ │ └── pongo2.tpl ├── directsqlx │ ├── README.MD │ ├── common │ │ └── pongo2func.go │ ├── config │ │ ├── __global___.ini │ │ ├── directsql.ini │ │ ├── directsqldemo_1.0.ini │ │ └── xorm.ini │ ├── handler │ │ └── index.go │ ├── main.go │ ├── model │ │ └── demo.msql │ ├── router │ │ └── router.go │ ├── static │ │ └── jQuery-2.1.4.min.js │ ├── sys_user.sql │ └── view │ │ ├── index.html │ │ └── pongo2.tpl └── myconfig │ ├── config │ └── __global___.ini │ └── main.go ├── server.go ├── session ├── README.md ├── couchbase │ └── sess_couchbase.go ├── ledis │ └── ledis_session.go ├── memcache │ └── sess_memcache.go ├── mysql │ └── sess_mysql.go ├── postgres │ └── sess_postgresql.go ├── redis │ └── sess_redis.go ├── sess_cookie.go ├── sess_cookie_test.go ├── sess_file.go ├── sess_mem.go ├── sess_mem_test.go ├── sess_test.go ├── sess_utils.go ├── session.go └── ssdb │ └── sess_ssdb.go ├── swagger ├── bindata_assetfs.go ├── bindata_assetfs_usage.go ├── swagger-ui.zip └── swagger.go ├── syso_windows_386.go ├── tree.go ├── tree_test.go └── vendor ├── github.com ├── andeya │ ├── goutil │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── currip.go │ │ ├── doc.go │ │ ├── encrypt.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── file.go │ │ ├── gopath.go │ │ ├── gotest.go │ │ ├── js_url.go │ │ ├── kvdata.go │ │ ├── map.go │ │ ├── other.go │ │ ├── pid_file.go │ │ ├── random.go │ │ ├── sets.go │ │ ├── string.go │ │ ├── targz.go │ │ ├── trace.go │ │ └── type.go │ └── ini │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── README_ZH.md │ │ ├── error.go │ │ ├── helper.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go ├── bradfitz │ └── gomemcache │ │ ├── LICENSE │ │ └── memcache │ │ ├── memcache.go │ │ └── selector.go ├── couchbase │ ├── go-couchbase │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── audit.go │ │ ├── client.go │ │ ├── conn_pool.go │ │ ├── ddocs.go │ │ ├── observe.go │ │ ├── pools.go │ │ ├── port_map.go │ │ ├── streaming.go │ │ ├── tap.go │ │ ├── upr.go │ │ ├── users.go │ │ ├── util.go │ │ ├── vbmap.go │ │ └── views.go │ ├── gomemcached │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── client │ │ │ ├── mc.go │ │ │ ├── tap_feed.go │ │ │ ├── transport.go │ │ │ └── upr_feed.go │ │ ├── mc_constants.go │ │ ├── mc_req.go │ │ ├── mc_res.go │ │ └── tap.go │ └── goutils │ │ ├── LICENSE.md │ │ ├── logging │ │ ├── logger.go │ │ └── logger_golog.go │ │ └── scramsha │ │ ├── scramsha.go │ │ └── scramsha_http.go ├── cupcake │ └── rdb │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENCE │ │ ├── README.md │ │ ├── crc64 │ │ └── crc64.go │ │ ├── decoder.go │ │ ├── encoder.go │ │ ├── nopdecoder │ │ └── nop_decoder.go │ │ └── slice_buffer.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── edsrzf │ └── mmap-go │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── mmap.go │ │ ├── mmap_unix.go │ │ └── mmap_windows.go ├── elazarl │ └── go-bindata-assetfs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assetfs.go │ │ └── doc.go ├── facebookgo │ ├── ensure │ │ ├── .travis.yml │ │ ├── ensure.go │ │ ├── license │ │ └── readme.md │ ├── freeport │ │ ├── .travis.yml │ │ ├── freeport.go │ │ ├── license │ │ ├── patents │ │ └── readme.md │ ├── stack │ │ ├── .travis.yml │ │ ├── license │ │ ├── patents │ │ ├── readme.md │ │ └── stack.go │ └── subset │ │ ├── .travis.yml │ │ ├── license │ │ ├── patents │ │ ├── readme.md │ │ └── subset.go ├── flosch │ └── pongo2 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── filters.go │ │ ├── filters_builtin.go │ │ ├── helpers.go │ │ ├── lexer.go │ │ ├── nodes.go │ │ ├── nodes_html.go │ │ ├── nodes_wrapper.go │ │ ├── options.go │ │ ├── parser.go │ │ ├── parser_document.go │ │ ├── parser_expression.go │ │ ├── pongo2.go │ │ ├── tags.go │ │ ├── tags_autoescape.go │ │ ├── tags_block.go │ │ ├── tags_comment.go │ │ ├── tags_cycle.go │ │ ├── tags_extends.go │ │ ├── tags_filter.go │ │ ├── tags_firstof.go │ │ ├── tags_for.go │ │ ├── tags_if.go │ │ ├── tags_ifchanged.go │ │ ├── tags_ifequal.go │ │ ├── tags_ifnotequal.go │ │ ├── tags_import.go │ │ ├── tags_include.go │ │ ├── tags_lorem.go │ │ ├── tags_macro.go │ │ ├── tags_now.go │ │ ├── tags_set.go │ │ ├── tags_spaceless.go │ │ ├── tags_ssi.go │ │ ├── tags_templatetag.go │ │ ├── tags_widthratio.go │ │ ├── tags_with.go │ │ ├── template.go │ │ ├── template_loader.go │ │ ├── template_sets.go │ │ ├── value.go │ │ └── variable.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── garyburd │ └── redigo │ │ ├── LICENSE │ │ ├── internal │ │ └── commandinfo.go │ │ └── redis │ │ ├── conn.go │ │ ├── doc.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go18.go │ │ ├── log.go │ │ ├── pool.go │ │ ├── pool17.go │ │ ├── pubsub.go │ │ ├── redis.go │ │ ├── reply.go │ │ ├── scan.go │ │ └── script.go ├── go-sql-driver │ └── mysql │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── connection.go │ │ ├── connection_go18.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── infile.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ ├── utils.go │ │ ├── utils_go17.go │ │ └── utils_go18.go ├── golang │ └── snappy │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README │ │ ├── decode.go │ │ ├── decode_amd64.go │ │ ├── decode_amd64.s │ │ ├── decode_other.go │ │ ├── encode.go │ │ ├── encode_amd64.go │ │ ├── encode_amd64.s │ │ ├── encode_other.go │ │ └── snappy.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── doc.go │ │ ├── join.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── proxy.go │ │ ├── server.go │ │ ├── tls_handshake.go │ │ ├── tls_handshake_116.go │ │ ├── util.go │ │ └── x_net_proxy.go ├── henrylee2cn │ └── ameda │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── atoi62.go │ │ ├── atoi_x.go │ │ ├── bool.go │ │ ├── bools.go │ │ ├── float32.go │ │ ├── float32s.go │ │ ├── float64.go │ │ ├── float64s.go │ │ ├── initialize.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int16s.go │ │ ├── int32.go │ │ ├── int32s.go │ │ ├── int64.go │ │ ├── int64s.go │ │ ├── int8.go │ │ ├── int8s.go │ │ ├── interface.go │ │ ├── interfaces.go │ │ ├── ints.go │ │ ├── itoa62.go │ │ ├── itoa_x.go │ │ ├── string.go │ │ ├── strings.go │ │ ├── typconv.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint16s.go │ │ ├── uint32.go │ │ ├── uint32s.go │ │ ├── uint64.go │ │ ├── uint64s.go │ │ ├── uint8.go │ │ ├── uint8s.go │ │ ├── uints.go │ │ ├── utils.go │ │ └── value.go ├── jinzhu │ ├── gorm │ │ ├── .gitignore │ │ ├── License │ │ ├── README.md │ │ ├── association.go │ │ ├── callback.go │ │ ├── callback_create.go │ │ ├── callback_delete.go │ │ ├── callback_query.go │ │ ├── callback_query_preload.go │ │ ├── callback_row_query.go │ │ ├── callback_save.go │ │ ├── callback_update.go │ │ ├── dialect.go │ │ ├── dialect_common.go │ │ ├── dialect_mysql.go │ │ ├── dialect_postgres.go │ │ ├── dialect_sqlite3.go │ │ ├── dialects │ │ │ ├── mysql │ │ │ │ └── mysql.go │ │ │ └── postgres │ │ │ │ └── postgres.go │ │ ├── docker-compose.yml │ │ ├── errors.go │ │ ├── field.go │ │ ├── interface.go │ │ ├── join_table_handler.go │ │ ├── logger.go │ │ ├── main.go │ │ ├── model.go │ │ ├── model_struct.go │ │ ├── naming.go │ │ ├── scope.go │ │ ├── search.go │ │ ├── test_all.sh │ │ ├── utils.go │ │ └── wercker.yml │ └── inflection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inflections.go │ │ └── wercker.yml ├── jmoiron │ └── sqlx │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bind.go │ │ ├── doc.go │ │ ├── named.go │ │ ├── named_context.go │ │ ├── reflectx │ │ ├── README.md │ │ └── reflect.go │ │ ├── sqlx.go │ │ └── sqlx_context.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── juju │ └── errors │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── dependencies.tsv │ │ ├── doc.go │ │ ├── error.go │ │ ├── errortypes.go │ │ ├── functions.go │ │ └── path.go ├── kr │ ├── pretty │ │ ├── .gitignore │ │ ├── License │ │ ├── Readme │ │ ├── diff.go │ │ ├── formatter.go │ │ ├── pretty.go │ │ └── zero.go │ └── text │ │ ├── License │ │ ├── Readme │ │ ├── doc.go │ │ ├── indent.go │ │ └── wrap.go ├── lib │ └── pq │ │ ├── .gitignore │ │ ├── .travis.sh │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TESTS.md │ │ ├── array.go │ │ ├── buf.go │ │ ├── conn.go │ │ ├── conn_go18.go │ │ ├── connector.go │ │ ├── copy.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── hstore │ │ └── hstore.go │ │ ├── notify.go │ │ ├── oid │ │ ├── doc.go │ │ └── types.go │ │ ├── rows.go │ │ ├── scram │ │ └── scram.go │ │ ├── ssl.go │ │ ├── ssl_permissions.go │ │ ├── ssl_windows.go │ │ ├── url.go │ │ ├── user_posix.go │ │ ├── user_windows.go │ │ └── uuid.go ├── modern-go │ ├── concurrent │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_17.go │ │ ├── go_above_19.go │ │ ├── go_below_17.go │ │ ├── go_below_19.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── test.sh │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── pelletier │ └── go-toml │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── benchmark.json │ │ ├── benchmark.sh │ │ ├── benchmark.toml │ │ ├── benchmark.yml │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── marshal.go │ │ ├── marshal_OrderPreserve_Map_test.toml │ │ ├── marshal_OrderPreserve_test.toml │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomltree_create.go │ │ └── tomltree_write.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── siddontang │ ├── go │ │ ├── LICENSE │ │ ├── filelock │ │ │ ├── LICENSE │ │ │ ├── file_lock_generic.go │ │ │ ├── file_lock_solaris.go │ │ │ ├── file_lock_unix.go │ │ │ └── file_lock_windows.go │ │ ├── hack │ │ │ └── hack.go │ │ ├── ioutil2 │ │ │ ├── ioutil.go │ │ │ └── sectionwriter.go │ │ ├── log │ │ │ ├── doc.go │ │ │ ├── filehandler.go │ │ │ ├── handler.go │ │ │ ├── log.go │ │ │ └── sockethandler.go │ │ ├── num │ │ │ ├── bytes.go │ │ │ ├── cmp.go │ │ │ └── str.go │ │ ├── snappy │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ └── snappy.go │ │ └── sync2 │ │ │ ├── atomic.go │ │ │ └── semaphore.go │ ├── ledisdb │ │ ├── LICENSE │ │ ├── config │ │ │ ├── config-docker.toml │ │ │ ├── config.go │ │ │ └── config.toml │ │ ├── ledis │ │ │ ├── batch.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── event.go │ │ │ ├── ledis.go │ │ │ ├── ledis_db.go │ │ │ ├── migrate.go │ │ │ ├── replication.go │ │ │ ├── scan.go │ │ │ ├── sort.go │ │ │ ├── t_hash.go │ │ │ ├── t_kv.go │ │ │ ├── t_list.go │ │ │ ├── t_set.go │ │ │ ├── t_ttl.go │ │ │ ├── t_zset.go │ │ │ └── util.go │ │ ├── rpl │ │ │ ├── file_io.go │ │ │ ├── file_store.go │ │ │ ├── file_table.go │ │ │ ├── goleveldb_store.go │ │ │ ├── log.go │ │ │ ├── rpl.go │ │ │ └── store.go │ │ └── store │ │ │ ├── db.go │ │ │ ├── driver │ │ │ ├── driver.go │ │ │ ├── slice.go │ │ │ └── store.go │ │ │ ├── goleveldb │ │ │ ├── batch.go │ │ │ ├── const.go │ │ │ ├── db.go │ │ │ ├── iterator.go │ │ │ └── snapshot.go │ │ │ ├── iterator.go │ │ │ ├── leveldb │ │ │ ├── batch.go │ │ │ ├── cache.go │ │ │ ├── const.go │ │ │ ├── db.go │ │ │ ├── filterpolicy.go │ │ │ ├── iterator.go │ │ │ ├── leveldb_ext.cc │ │ │ ├── leveldb_ext.h │ │ │ ├── levigo-license │ │ │ ├── options.go │ │ │ ├── slice.go │ │ │ ├── snapshot.go │ │ │ └── util.go │ │ │ ├── rocksdb │ │ │ ├── batch.go │ │ │ ├── cache.go │ │ │ ├── const.go │ │ │ ├── db.go │ │ │ ├── env.go │ │ │ ├── filterpolicy.go │ │ │ ├── iterator.go │ │ │ ├── options.go │ │ │ ├── rocksdb_ext.cc │ │ │ ├── rocksdb_ext.h │ │ │ ├── slice.go │ │ │ ├── snapshot.go │ │ │ └── util.go │ │ │ ├── slice.go │ │ │ ├── snapshot.go │ │ │ ├── stat.go │ │ │ ├── store.go │ │ │ └── writebatch.go │ └── rdb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── digest.go │ │ ├── encode.go │ │ ├── loader.go │ │ ├── reader.go │ │ └── wandoujia-license ├── ssdb │ └── gossdb │ │ ├── LICENSE │ │ └── ssdb │ │ └── ssdb.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_compare_can_convert.go │ │ ├── assertion_compare_legacy.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ └── http_assertions.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go └── syndtr │ └── goleveldb │ ├── LICENSE │ └── leveldb │ ├── batch.go │ ├── cache │ ├── cache.go │ └── lru.go │ ├── comparer.go │ ├── comparer │ ├── bytes_comparer.go │ └── comparer.go │ ├── db.go │ ├── db_compaction.go │ ├── db_iter.go │ ├── db_snapshot.go │ ├── db_state.go │ ├── db_transaction.go │ ├── db_util.go │ ├── db_write.go │ ├── doc.go │ ├── errors.go │ ├── errors │ └── errors.go │ ├── filter.go │ ├── filter │ ├── bloom.go │ └── filter.go │ ├── iterator │ ├── array_iter.go │ ├── indexed_iter.go │ ├── iter.go │ └── merged_iter.go │ ├── journal │ └── journal.go │ ├── key.go │ ├── memdb │ └── memdb.go │ ├── opt │ └── options.go │ ├── options.go │ ├── session.go │ ├── session_compaction.go │ ├── session_record.go │ ├── session_util.go │ ├── storage.go │ ├── storage │ ├── file_storage.go │ ├── file_storage_nacl.go │ ├── file_storage_plan9.go │ ├── file_storage_solaris.go │ ├── file_storage_unix.go │ ├── file_storage_windows.go │ ├── mem_storage.go │ └── storage.go │ ├── table.go │ ├── table │ ├── reader.go │ ├── table.go │ └── writer.go │ ├── util.go │ ├── util │ ├── buffer.go │ ├── buffer_pool.go │ ├── crc32.go │ ├── hash.go │ ├── range.go │ └── util.go │ └── version.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── acme │ │ ├── acme.go │ │ ├── autocert │ │ │ ├── autocert.go │ │ │ ├── cache.go │ │ │ ├── listener.go │ │ │ └── renewal.go │ │ ├── http.go │ │ ├── jws.go │ │ ├── rfc8555.go │ │ ├── types.go │ │ └── version_go112.go │ └── pbkdf2 │ │ └── pbkdf2.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ ├── charset │ │ │ └── charset.go │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── escape.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── parse.go │ │ ├── render.go │ │ └── token.go │ └── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ └── trieval.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── internal │ │ └── unsafeheader │ │ │ └── unsafeheader.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── epoll_zos.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── errors_freebsd_arm64.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── fstatfs_zos.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.1_12.go │ │ ├── syscall_darwin.1_13.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_illumos_amd64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── empty.s │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── charmap │ │ ├── charmap.go │ │ └── tables.go │ ├── encoding.go │ ├── htmlindex │ │ ├── htmlindex.go │ │ ├── map.go │ │ └── tables.go │ ├── internal │ │ ├── identifier │ │ │ ├── identifier.go │ │ │ └── mib.go │ │ └── internal.go │ ├── japanese │ │ ├── all.go │ │ ├── eucjp.go │ │ ├── iso2022jp.go │ │ ├── shiftjis.go │ │ └── tables.go │ ├── korean │ │ ├── euckr.go │ │ └── tables.go │ ├── simplifiedchinese │ │ ├── all.go │ │ ├── gbk.go │ │ ├── hzgb2312.go │ │ └── tables.go │ ├── traditionalchinese │ │ ├── big5.go │ │ └── tables.go │ └── unicode │ │ ├── override.go │ │ └── unicode.go │ ├── internal │ ├── language │ │ ├── common.go │ │ ├── compact.go │ │ ├── compact │ │ │ ├── compact.go │ │ │ ├── language.go │ │ │ ├── parents.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── compose.go │ │ ├── coverage.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── tag │ │ └── tag.go │ └── utf8internal │ │ └── utf8internal.go │ ├── language │ ├── coverage.go │ ├── doc.go │ ├── go1_1.go │ ├── go1_2.go │ ├── language.go │ ├── match.go │ ├── parse.go │ ├── tables.go │ └── tags.go │ ├── runes │ ├── cond.go │ └── runes.go │ ├── secure │ └── bidirule │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ └── bidirule9.0.0.go │ ├── transform │ └── transform.go │ └── unicode │ ├── bidi │ ├── bidi.go │ ├── bracket.go │ ├── core.go │ ├── prop.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables9.0.0.go │ └── trieval.go │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ └── trie.go ├── google.golang.org └── appengine │ ├── LICENSE │ └── cloudsql │ ├── cloudsql.go │ ├── cloudsql_classic.go │ └── cloudsql_vm.go ├── gopkg.in ├── check.v1 │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── TODO │ ├── benchmark.go │ ├── check.go │ ├── checkers.go │ ├── helpers.go │ ├── printer.go │ ├── reporter.go │ └── run.go ├── dgrijalva │ └── jwt-go.v3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── modules.txt └── xorm.io ├── builder ├── .drone.yml ├── LICENSE ├── README.md ├── builder.go ├── builder_delete.go ├── builder_insert.go ├── builder_join.go ├── builder_limit.go ├── builder_select.go ├── builder_union.go ├── builder_update.go ├── cond.go ├── cond_and.go ├── cond_between.go ├── cond_compare.go ├── cond_eq.go ├── cond_expr.go ├── cond_if.go ├── cond_in.go ├── cond_like.go ├── cond_neq.go ├── cond_not.go ├── cond_notin.go ├── cond_null.go ├── cond_or.go ├── doc.go ├── error.go ├── sql.go └── writer.go ├── core ├── .drone.yml ├── .gitignore ├── LICENSE ├── README.md ├── benchmark.sh ├── cache.go ├── column.go ├── converstion.go ├── db.go ├── dialect.go ├── driver.go ├── error.go ├── filter.go ├── ilogger.go ├── index.go ├── mapper.go ├── pk.go ├── rows.go ├── scan.go ├── stmt.go ├── table.go ├── tx.go └── type.go └── xorm ├── .drone.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_CN.md ├── cache_lru.go ├── cache_memory_store.go ├── context_cache.go ├── convert.go ├── dialect_mssql.go ├── dialect_mysql.go ├── dialect_oracle.go ├── dialect_postgres.go ├── dialect_sqlite3.go ├── doc.go ├── engine.go ├── engine_cond.go ├── engine_context.go ├── engine_group.go ├── engine_group_policy.go ├── engine_table.go ├── error.go ├── gen_reserved.sh ├── helpers.go ├── helpler_time.go ├── interface.go ├── json.go ├── logger.go ├── pg_reserved.txt ├── processors.go ├── rows.go ├── session.go ├── session_cols.go ├── session_cond.go ├── session_context.go ├── session_convert.go ├── session_delete.go ├── session_exist.go ├── session_find.go ├── session_get.go ├── session_insert.go ├── session_iterate.go ├── session_query.go ├── session_raw.go ├── session_schema.go ├── session_stats.go ├── session_tx.go ├── session_update.go ├── statement.go ├── statement_args.go ├── statement_columnmap.go ├── statement_exprparam.go ├── statement_quote.go ├── syslogger.go ├── tag.go ├── test_mssql.sh ├── test_mssql_cache.sh ├── test_mymysql.sh ├── test_mymysql_cache.sh ├── test_mysql.sh ├── test_mysql_cache.sh ├── test_postgres.sh ├── test_postgres_cache.sh ├── test_sqlite.sh ├── test_sqlite_cache.sh ├── test_tidb.sh ├── transaction.go ├── types.go └── xorm.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/README_ZH.md -------------------------------------------------------------------------------- /_syso/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/favicon.ico -------------------------------------------------------------------------------- /_syso/favicon.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/favicon.manifest -------------------------------------------------------------------------------- /_syso/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/favicon.png -------------------------------------------------------------------------------- /_syso/favicon.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/favicon.syso -------------------------------------------------------------------------------- /_syso/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/index.css -------------------------------------------------------------------------------- /_syso/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/index.html -------------------------------------------------------------------------------- /_syso/jquery.githubRepoWidget2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/jquery.githubRepoWidget2.js -------------------------------------------------------------------------------- /_syso/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/jquery.min.js -------------------------------------------------------------------------------- /_syso/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/_syso/jquery.min.map -------------------------------------------------------------------------------- /_syso/syso.go: -------------------------------------------------------------------------------- 1 | package syso 2 | -------------------------------------------------------------------------------- /acceptencoder/acceptencoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/acceptencoder/acceptencoder.go -------------------------------------------------------------------------------- /acceptencoder/acceptencoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/acceptencoder/acceptencoder_test.go -------------------------------------------------------------------------------- /apidoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apidoc.go -------------------------------------------------------------------------------- /apiware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/.gitignore -------------------------------------------------------------------------------- /apiware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/LICENSE -------------------------------------------------------------------------------- /apiware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/README.md -------------------------------------------------------------------------------- /apiware/apiware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/apiware.go -------------------------------------------------------------------------------- /apiware/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/convert.go -------------------------------------------------------------------------------- /apiware/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/doc.go -------------------------------------------------------------------------------- /apiware/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/error.go -------------------------------------------------------------------------------- /apiware/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/param.go -------------------------------------------------------------------------------- /apiware/param_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/param_test.go -------------------------------------------------------------------------------- /apiware/paramapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/paramapi.go -------------------------------------------------------------------------------- /apiware/paramapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/paramapi_test.go -------------------------------------------------------------------------------- /apiware/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/util.go -------------------------------------------------------------------------------- /apiware/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/apiware/util_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/config_test.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/context.go -------------------------------------------------------------------------------- /context_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/context_input.go -------------------------------------------------------------------------------- /context_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/context_output.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc.go -------------------------------------------------------------------------------- /doc/MultiUsage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc/MultiUsage.png -------------------------------------------------------------------------------- /doc/apidoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc/apidoc.png -------------------------------------------------------------------------------- /doc/faygo_48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc/faygo_48x48.ico -------------------------------------------------------------------------------- /doc/faygo_96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc/faygo_96x96.png -------------------------------------------------------------------------------- /doc/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc/index.png -------------------------------------------------------------------------------- /doc/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/doc/server.png -------------------------------------------------------------------------------- /ext/barcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/LICENSE -------------------------------------------------------------------------------- /ext/barcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/README.md -------------------------------------------------------------------------------- /ext/barcode/barcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/barcode.go -------------------------------------------------------------------------------- /ext/barcode/codabar/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/codabar/encoder.go -------------------------------------------------------------------------------- /ext/barcode/codabar/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/codabar/encoder_test.go -------------------------------------------------------------------------------- /ext/barcode/code128/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/code128/encode.go -------------------------------------------------------------------------------- /ext/barcode/code128/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/code128/encode_test.go -------------------------------------------------------------------------------- /ext/barcode/code128/encodingtable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/code128/encodingtable.go -------------------------------------------------------------------------------- /ext/barcode/code39/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/code39/encoder.go -------------------------------------------------------------------------------- /ext/barcode/datamatrix/codelayout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/datamatrix/codelayout.go -------------------------------------------------------------------------------- /ext/barcode/datamatrix/codesize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/datamatrix/codesize.go -------------------------------------------------------------------------------- /ext/barcode/datamatrix/datamatrixcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/datamatrix/datamatrixcode.go -------------------------------------------------------------------------------- /ext/barcode/datamatrix/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/datamatrix/encoder.go -------------------------------------------------------------------------------- /ext/barcode/datamatrix/errorcorrection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/datamatrix/errorcorrection.go -------------------------------------------------------------------------------- /ext/barcode/ean/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/ean/encoder.go -------------------------------------------------------------------------------- /ext/barcode/ean/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/ean/encoder_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/alphanumeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/alphanumeric.go -------------------------------------------------------------------------------- /ext/barcode/qr/alphanumeric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/alphanumeric_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/automatic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/automatic.go -------------------------------------------------------------------------------- /ext/barcode/qr/automatic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/automatic_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/blocks.go -------------------------------------------------------------------------------- /ext/barcode/qr/blocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/blocks_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/encoder.go -------------------------------------------------------------------------------- /ext/barcode/qr/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/encoder_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/errorcorrection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/errorcorrection.go -------------------------------------------------------------------------------- /ext/barcode/qr/errorcorrection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/errorcorrection_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/helper.go -------------------------------------------------------------------------------- /ext/barcode/qr/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/numeric.go -------------------------------------------------------------------------------- /ext/barcode/qr/numeric_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/numeric_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/qrcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/qrcode.go -------------------------------------------------------------------------------- /ext/barcode/qr/qrcode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/qrcode_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/unicode.go -------------------------------------------------------------------------------- /ext/barcode/qr/unicode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/unicode_test.go -------------------------------------------------------------------------------- /ext/barcode/qr/versioninfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/versioninfo.go -------------------------------------------------------------------------------- /ext/barcode/qr/versioninfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/qr/versioninfo_test.go -------------------------------------------------------------------------------- /ext/barcode/scaledbarcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/scaledbarcode.go -------------------------------------------------------------------------------- /ext/barcode/twooffive/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/twooffive/encoder.go -------------------------------------------------------------------------------- /ext/barcode/twooffive/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/twooffive/encoder_test.go -------------------------------------------------------------------------------- /ext/barcode/utils/base1dcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/base1dcode.go -------------------------------------------------------------------------------- /ext/barcode/utils/bitlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/bitlist.go -------------------------------------------------------------------------------- /ext/barcode/utils/galoisfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/galoisfield.go -------------------------------------------------------------------------------- /ext/barcode/utils/galoisfield_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/galoisfield_test.go -------------------------------------------------------------------------------- /ext/barcode/utils/gfpoly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/gfpoly.go -------------------------------------------------------------------------------- /ext/barcode/utils/runeint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/runeint.go -------------------------------------------------------------------------------- /ext/barcode/utils/runeint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/barcode/utils/runeint_test.go -------------------------------------------------------------------------------- /ext/bitconv/bitconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/bitconv/bitconv.go -------------------------------------------------------------------------------- /ext/bitconv/bitconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/bitconv/bitconv_test.go -------------------------------------------------------------------------------- /ext/cron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/.gitignore -------------------------------------------------------------------------------- /ext/cron/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /ext/cron/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/LICENSE -------------------------------------------------------------------------------- /ext/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/README.md -------------------------------------------------------------------------------- /ext/cron/constantdelay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/constantdelay.go -------------------------------------------------------------------------------- /ext/cron/constantdelay_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/constantdelay_test.go -------------------------------------------------------------------------------- /ext/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/cron.go -------------------------------------------------------------------------------- /ext/cron/cron_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/cron_test.go -------------------------------------------------------------------------------- /ext/cron/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/doc.go -------------------------------------------------------------------------------- /ext/cron/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/parser.go -------------------------------------------------------------------------------- /ext/cron/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/parser_test.go -------------------------------------------------------------------------------- /ext/cron/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/spec.go -------------------------------------------------------------------------------- /ext/cron/spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/cron/spec_test.go -------------------------------------------------------------------------------- /ext/db/directsql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/README.md -------------------------------------------------------------------------------- /ext/db/directsql/checkparameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/checkparameter.go -------------------------------------------------------------------------------- /ext/db/directsql/resultcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/resultcache.go -------------------------------------------------------------------------------- /ext/db/directsql/snowflake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/snowflake.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlcontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlcontext.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlengine.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlhandle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlhandle.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlhelper.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlmanage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlmanage.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlrouter.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlservice.go -------------------------------------------------------------------------------- /ext/db/directsql/sqlwatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsql/sqlwatcher.go -------------------------------------------------------------------------------- /ext/db/directsqlx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/README.md -------------------------------------------------------------------------------- /ext/db/directsqlx/checkparameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/checkparameter.go -------------------------------------------------------------------------------- /ext/db/directsqlx/resultcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/resultcache.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlcontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlcontext.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlengine.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlhandle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlhandle.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlhelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlhelper.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlmanage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlmanage.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlrouter.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlservice.go -------------------------------------------------------------------------------- /ext/db/directsqlx/sqlwatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/directsqlx/sqlwatcher.go -------------------------------------------------------------------------------- /ext/db/gorm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/gorm/config.go -------------------------------------------------------------------------------- /ext/db/gorm/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/gorm/config_test.go -------------------------------------------------------------------------------- /ext/db/gorm/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/gorm/helper.go -------------------------------------------------------------------------------- /ext/db/gorm/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/gorm/service.go -------------------------------------------------------------------------------- /ext/db/sqlx/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/sqlx/config.go -------------------------------------------------------------------------------- /ext/db/sqlx/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/sqlx/config_test.go -------------------------------------------------------------------------------- /ext/db/sqlx/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/sqlx/helper.go -------------------------------------------------------------------------------- /ext/db/sqlx/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/sqlx/service.go -------------------------------------------------------------------------------- /ext/db/xorm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/xorm/config.go -------------------------------------------------------------------------------- /ext/db/xorm/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/xorm/config_test.go -------------------------------------------------------------------------------- /ext/db/xorm/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/xorm/helper.go -------------------------------------------------------------------------------- /ext/db/xorm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/xorm/logger.go -------------------------------------------------------------------------------- /ext/db/xorm/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/db/xorm/service.go -------------------------------------------------------------------------------- /ext/middleware/attachment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/attachment.go -------------------------------------------------------------------------------- /ext/middleware/cross_origin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/cross_origin.go -------------------------------------------------------------------------------- /ext/middleware/html_suffix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/html_suffix.go -------------------------------------------------------------------------------- /ext/middleware/ip_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/ip_filter.go -------------------------------------------------------------------------------- /ext/middleware/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/jwt/jwt.go -------------------------------------------------------------------------------- /ext/middleware/jwt/sample/log/app.pid: -------------------------------------------------------------------------------- 1 | 7560 2 | -------------------------------------------------------------------------------- /ext/middleware/jwt/sample/run.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/jwt/sample/run.http -------------------------------------------------------------------------------- /ext/middleware/jwt/sample/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/middleware/jwt/sample/server.go -------------------------------------------------------------------------------- /ext/otp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/.travis.yml -------------------------------------------------------------------------------- /ext/otp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/LICENSE -------------------------------------------------------------------------------- /ext/otp/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/NOTICE -------------------------------------------------------------------------------- /ext/otp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/README.md -------------------------------------------------------------------------------- /ext/otp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/doc.go -------------------------------------------------------------------------------- /ext/otp/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/example/main.go -------------------------------------------------------------------------------- /ext/otp/hotp/hotp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/hotp/hotp.go -------------------------------------------------------------------------------- /ext/otp/hotp/hotp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/hotp/hotp_test.go -------------------------------------------------------------------------------- /ext/otp/otp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/otp.go -------------------------------------------------------------------------------- /ext/otp/otp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/otp_test.go -------------------------------------------------------------------------------- /ext/otp/totp/totp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/totp/totp.go -------------------------------------------------------------------------------- /ext/otp/totp/totp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/otp/totp/totp_test.go -------------------------------------------------------------------------------- /ext/surfer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/.gitignore -------------------------------------------------------------------------------- /ext/surfer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/LICENSE -------------------------------------------------------------------------------- /ext/surfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/README.md -------------------------------------------------------------------------------- /ext/surfer/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/README_ZH.md -------------------------------------------------------------------------------- /ext/surfer/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/agent.go -------------------------------------------------------------------------------- /ext/surfer/agent_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/agent_bsd.go -------------------------------------------------------------------------------- /ext/surfer/agent_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/agent_linux.go -------------------------------------------------------------------------------- /ext/surfer/agent_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/agent_linux_arm.go -------------------------------------------------------------------------------- /ext/surfer/agent_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/agent_windows.go -------------------------------------------------------------------------------- /ext/surfer/body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/body.go -------------------------------------------------------------------------------- /ext/surfer/example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/example/example.go -------------------------------------------------------------------------------- /ext/surfer/phantom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/phantom.go -------------------------------------------------------------------------------- /ext/surfer/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/request.go -------------------------------------------------------------------------------- /ext/surfer/surf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/surf.go -------------------------------------------------------------------------------- /ext/surfer/surfer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/surfer.go -------------------------------------------------------------------------------- /ext/surfer/surfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/surfer_test.go -------------------------------------------------------------------------------- /ext/surfer/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/surfer/util.go -------------------------------------------------------------------------------- /ext/task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/task/README.md -------------------------------------------------------------------------------- /ext/task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/task/task.go -------------------------------------------------------------------------------- /ext/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/dce.go -------------------------------------------------------------------------------- /ext/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/doc.go -------------------------------------------------------------------------------- /ext/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/hash.go -------------------------------------------------------------------------------- /ext/uuid/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/json_test.go -------------------------------------------------------------------------------- /ext/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/marshal.go -------------------------------------------------------------------------------- /ext/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/node.go -------------------------------------------------------------------------------- /ext/uuid/seq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/seq_test.go -------------------------------------------------------------------------------- /ext/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/sql.go -------------------------------------------------------------------------------- /ext/uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/sql_test.go -------------------------------------------------------------------------------- /ext/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/time.go -------------------------------------------------------------------------------- /ext/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/util.go -------------------------------------------------------------------------------- /ext/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/uuid.go -------------------------------------------------------------------------------- /ext/uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/uuid_test.go -------------------------------------------------------------------------------- /ext/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/version1.go -------------------------------------------------------------------------------- /ext/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/uuid/version4.go -------------------------------------------------------------------------------- /ext/websocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/.gitignore -------------------------------------------------------------------------------- /ext/websocket/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/.travis.yml -------------------------------------------------------------------------------- /ext/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/AUTHORS -------------------------------------------------------------------------------- /ext/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/LICENSE -------------------------------------------------------------------------------- /ext/websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/README.md -------------------------------------------------------------------------------- /ext/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/client.go -------------------------------------------------------------------------------- /ext/websocket/client_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/client_server_test.go -------------------------------------------------------------------------------- /ext/websocket/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/client_test.go -------------------------------------------------------------------------------- /ext/websocket/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/compression.go -------------------------------------------------------------------------------- /ext/websocket/compression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/compression_test.go -------------------------------------------------------------------------------- /ext/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/conn.go -------------------------------------------------------------------------------- /ext/websocket/conn_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/conn_read.go -------------------------------------------------------------------------------- /ext/websocket/conn_read_legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/conn_read_legacy.go -------------------------------------------------------------------------------- /ext/websocket/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/conn_test.go -------------------------------------------------------------------------------- /ext/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/doc.go -------------------------------------------------------------------------------- /ext/websocket/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/example_test.go -------------------------------------------------------------------------------- /ext/websocket/examples/autobahn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/autobahn/README.md -------------------------------------------------------------------------------- /ext/websocket/examples/autobahn/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/autobahn/server.go -------------------------------------------------------------------------------- /ext/websocket/examples/chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/chat/README.md -------------------------------------------------------------------------------- /ext/websocket/examples/chat/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/chat/client.go -------------------------------------------------------------------------------- /ext/websocket/examples/chat/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/chat/home.html -------------------------------------------------------------------------------- /ext/websocket/examples/chat/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/chat/hub.go -------------------------------------------------------------------------------- /ext/websocket/examples/chat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/chat/main.go -------------------------------------------------------------------------------- /ext/websocket/examples/command/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/command/README.md -------------------------------------------------------------------------------- /ext/websocket/examples/command/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/command/home.html -------------------------------------------------------------------------------- /ext/websocket/examples/command/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/command/main.go -------------------------------------------------------------------------------- /ext/websocket/examples/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/echo/README.md -------------------------------------------------------------------------------- /ext/websocket/examples/echo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/echo/client.go -------------------------------------------------------------------------------- /ext/websocket/examples/echo/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/echo/server.go -------------------------------------------------------------------------------- /ext/websocket/examples/filewatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/filewatch/README.md -------------------------------------------------------------------------------- /ext/websocket/examples/filewatch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/examples/filewatch/main.go -------------------------------------------------------------------------------- /ext/websocket/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/helper.go -------------------------------------------------------------------------------- /ext/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/json.go -------------------------------------------------------------------------------- /ext/websocket/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/json_test.go -------------------------------------------------------------------------------- /ext/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/mask.go -------------------------------------------------------------------------------- /ext/websocket/mask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/mask_test.go -------------------------------------------------------------------------------- /ext/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/server.go -------------------------------------------------------------------------------- /ext/websocket/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/server_test.go -------------------------------------------------------------------------------- /ext/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/util.go -------------------------------------------------------------------------------- /ext/websocket/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/ext/websocket/util_test.go -------------------------------------------------------------------------------- /faygo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/faygo.go -------------------------------------------------------------------------------- /faygo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/faygo_test.go -------------------------------------------------------------------------------- /framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/framework.go -------------------------------------------------------------------------------- /freecache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/LICENSE -------------------------------------------------------------------------------- /freecache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/README.md -------------------------------------------------------------------------------- /freecache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/cache.go -------------------------------------------------------------------------------- /freecache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/cache_test.go -------------------------------------------------------------------------------- /freecache/murmur3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/.gitignore -------------------------------------------------------------------------------- /freecache/murmur3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/LICENSE -------------------------------------------------------------------------------- /freecache/murmur3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/README.md -------------------------------------------------------------------------------- /freecache/murmur3/murmur.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/murmur.go -------------------------------------------------------------------------------- /freecache/murmur3/murmur128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/murmur128.go -------------------------------------------------------------------------------- /freecache/murmur3/murmur32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/murmur32.go -------------------------------------------------------------------------------- /freecache/murmur3/murmur64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/murmur64.go -------------------------------------------------------------------------------- /freecache/murmur3/murmur_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/murmur3/murmur_test.go -------------------------------------------------------------------------------- /freecache/ringbuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/ringbuf.go -------------------------------------------------------------------------------- /freecache/ringbuf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/ringbuf_test.go -------------------------------------------------------------------------------- /freecache/segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/segment.go -------------------------------------------------------------------------------- /freecache/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/freecache/server/main.go -------------------------------------------------------------------------------- /fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/fs.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/go.sum -------------------------------------------------------------------------------- /graceful_a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/graceful_a.go -------------------------------------------------------------------------------- /graceful_b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/graceful_b.go -------------------------------------------------------------------------------- /gracenet/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/gracenet/net.go -------------------------------------------------------------------------------- /gracenet/net_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/gracenet/net_test.go -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/handler.go -------------------------------------------------------------------------------- /helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/helper.go -------------------------------------------------------------------------------- /helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/helper_test.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/log.go -------------------------------------------------------------------------------- /log/app.pid: -------------------------------------------------------------------------------- 1 | 22132 2 | -------------------------------------------------------------------------------- /logging/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/CONTRIBUTORS -------------------------------------------------------------------------------- /logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/LICENSE -------------------------------------------------------------------------------- /logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/README.md -------------------------------------------------------------------------------- /logging/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/backend.go -------------------------------------------------------------------------------- /logging/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/color.go -------------------------------------------------------------------------------- /logging/color/colorable_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/colorable_others.go -------------------------------------------------------------------------------- /logging/color/colorable_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/colorable_windows.go -------------------------------------------------------------------------------- /logging/color/isatty_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/isatty_appengine.go -------------------------------------------------------------------------------- /logging/color/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/isatty_bsd.go -------------------------------------------------------------------------------- /logging/color/isatty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/isatty_linux.go -------------------------------------------------------------------------------- /logging/color/isatty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/isatty_solaris.go -------------------------------------------------------------------------------- /logging/color/isatty_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/color/isatty_windows.go -------------------------------------------------------------------------------- /logging/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/console.go -------------------------------------------------------------------------------- /logging/console_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/console_test.go -------------------------------------------------------------------------------- /logging/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/example_test.go -------------------------------------------------------------------------------- /logging/examples/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/examples/example.go -------------------------------------------------------------------------------- /logging/examples/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/examples/example.png -------------------------------------------------------------------------------- /logging/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/file.go -------------------------------------------------------------------------------- /logging/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/file_test.go -------------------------------------------------------------------------------- /logging/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/format.go -------------------------------------------------------------------------------- /logging/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/format_test.go -------------------------------------------------------------------------------- /logging/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/level.go -------------------------------------------------------------------------------- /logging/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/level_test.go -------------------------------------------------------------------------------- /logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/logger.go -------------------------------------------------------------------------------- /logging/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/logger_test.go -------------------------------------------------------------------------------- /logging/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/memory.go -------------------------------------------------------------------------------- /logging/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/memory_test.go -------------------------------------------------------------------------------- /logging/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/multi.go -------------------------------------------------------------------------------- /logging/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/logging/multi_test.go -------------------------------------------------------------------------------- /markdown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/LICENSE.txt -------------------------------------------------------------------------------- /markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/README.md -------------------------------------------------------------------------------- /markdown/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/block.go -------------------------------------------------------------------------------- /markdown/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/block_test.go -------------------------------------------------------------------------------- /markdown/github.css.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/github.css.go -------------------------------------------------------------------------------- /markdown/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/github.go -------------------------------------------------------------------------------- /markdown/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/html.go -------------------------------------------------------------------------------- /markdown/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/inline.go -------------------------------------------------------------------------------- /markdown/inline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/inline_test.go -------------------------------------------------------------------------------- /markdown/latex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/latex.go -------------------------------------------------------------------------------- /markdown/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/markdown.go -------------------------------------------------------------------------------- /markdown/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/ref_test.go -------------------------------------------------------------------------------- /markdown/smartypants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/markdown/smartypants.go -------------------------------------------------------------------------------- /mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/mime.go -------------------------------------------------------------------------------- /muxapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/muxapi.go -------------------------------------------------------------------------------- /pongo2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/.gitignore -------------------------------------------------------------------------------- /pongo2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/.travis.yml -------------------------------------------------------------------------------- /pongo2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/AUTHORS -------------------------------------------------------------------------------- /pongo2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/LICENSE -------------------------------------------------------------------------------- /pongo2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/README.md -------------------------------------------------------------------------------- /pongo2/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/context.go -------------------------------------------------------------------------------- /pongo2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/doc.go -------------------------------------------------------------------------------- /pongo2/docs/examples.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) -------------------------------------------------------------------------------- /pongo2/docs/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/docs/filters.md -------------------------------------------------------------------------------- /pongo2/docs/index.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) -------------------------------------------------------------------------------- /pongo2/docs/macros.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) 2 | -------------------------------------------------------------------------------- /pongo2/docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/docs/tags.md -------------------------------------------------------------------------------- /pongo2/docs/template_sets.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) -------------------------------------------------------------------------------- /pongo2/docs/write_filters.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pongo2/docs/write_tags.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pongo2/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/error.go -------------------------------------------------------------------------------- /pongo2/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/filters.go -------------------------------------------------------------------------------- /pongo2/filters_builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/filters_builtin.go -------------------------------------------------------------------------------- /pongo2/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/helpers.go -------------------------------------------------------------------------------- /pongo2/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/lexer.go -------------------------------------------------------------------------------- /pongo2/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/nodes.go -------------------------------------------------------------------------------- /pongo2/nodes_html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/nodes_html.go -------------------------------------------------------------------------------- /pongo2/nodes_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/nodes_wrapper.go -------------------------------------------------------------------------------- /pongo2/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/parser.go -------------------------------------------------------------------------------- /pongo2/parser_document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/parser_document.go -------------------------------------------------------------------------------- /pongo2/parser_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/parser_expression.go -------------------------------------------------------------------------------- /pongo2/pongo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/pongo2.go -------------------------------------------------------------------------------- /pongo2/pongo2_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/pongo2_template_test.go -------------------------------------------------------------------------------- /pongo2/pongo2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/pongo2_test.go -------------------------------------------------------------------------------- /pongo2/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags.go -------------------------------------------------------------------------------- /pongo2/tags_autoescape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_autoescape.go -------------------------------------------------------------------------------- /pongo2/tags_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_block.go -------------------------------------------------------------------------------- /pongo2/tags_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_comment.go -------------------------------------------------------------------------------- /pongo2/tags_cycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_cycle.go -------------------------------------------------------------------------------- /pongo2/tags_extends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_extends.go -------------------------------------------------------------------------------- /pongo2/tags_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_filter.go -------------------------------------------------------------------------------- /pongo2/tags_firstof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_firstof.go -------------------------------------------------------------------------------- /pongo2/tags_for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_for.go -------------------------------------------------------------------------------- /pongo2/tags_if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_if.go -------------------------------------------------------------------------------- /pongo2/tags_ifchanged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_ifchanged.go -------------------------------------------------------------------------------- /pongo2/tags_ifequal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_ifequal.go -------------------------------------------------------------------------------- /pongo2/tags_ifnotequal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_ifnotequal.go -------------------------------------------------------------------------------- /pongo2/tags_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_import.go -------------------------------------------------------------------------------- /pongo2/tags_include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_include.go -------------------------------------------------------------------------------- /pongo2/tags_lorem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_lorem.go -------------------------------------------------------------------------------- /pongo2/tags_macro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_macro.go -------------------------------------------------------------------------------- /pongo2/tags_now.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_now.go -------------------------------------------------------------------------------- /pongo2/tags_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_set.go -------------------------------------------------------------------------------- /pongo2/tags_spaceless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_spaceless.go -------------------------------------------------------------------------------- /pongo2/tags_ssi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_ssi.go -------------------------------------------------------------------------------- /pongo2/tags_templatetag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_templatetag.go -------------------------------------------------------------------------------- /pongo2/tags_widthratio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_widthratio.go -------------------------------------------------------------------------------- /pongo2/tags_with.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/tags_with.go -------------------------------------------------------------------------------- /pongo2/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template.go -------------------------------------------------------------------------------- /pongo2/template_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_loader.go -------------------------------------------------------------------------------- /pongo2/template_sets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_sets.go -------------------------------------------------------------------------------- /pongo2/template_tests/autoescape.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/autoescape.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/autoescape.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/autoescape.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/base_dir_test/base.html: -------------------------------------------------------------------------------- 1 | Hello from {{ base_directory }} -------------------------------------------------------------------------------- /pongo2/template_tests/base_dir_test/subdir/include.html: -------------------------------------------------------------------------------- 1 | {% include "base.html" %} -------------------------------------------------------------------------------- /pongo2/template_tests/base_dir_test/subdir/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /pongo2/template_tests/base_dir_test/subdir/ssi.html: -------------------------------------------------------------------------------- 1 | {% ssi "base.html" parsed %} -------------------------------------------------------------------------------- /pongo2/template_tests/comment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/comment.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/comment.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/comment.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/complex.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/complex.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/complex.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/complex.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/cycle.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/cycle.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/cycle.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/cycle.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/empty.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pongo2/template_tests/empty.tpl.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pongo2/template_tests/expressions.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/expressions.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/expressions.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/expressions.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/extends.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/extends.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/extends.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/extends.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/extends_super.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/extends_super.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/extends_super2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/extends_super2.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/filters.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/filters.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/filters.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/filters.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/firstof.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/firstof.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/firstof.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/firstof.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/for.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/for.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/for.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/for.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/if.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/if.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/if.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/if.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/ifchanged.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/ifchanged.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/ifchanged.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/ifchanged.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/includes.helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/includes.helper -------------------------------------------------------------------------------- /pongo2/template_tests/includes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/includes.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/includes.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/includes.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/inheritance/base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/inheritance/base.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/inheritance/base2.tpl: -------------------------------------------------------------------------------- 1 | {% include "doesnotexist.tpl" %} 2 | -------------------------------------------------------------------------------- /pongo2/template_tests/inheritance/cycle_include.tpl: -------------------------------------------------------------------------------- 1 | Included '{{ cycleitem }}'. -------------------------------------------------------------------------------- /pongo2/template_tests/issues.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pongo2/template_tests/issues.tpl.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pongo2/template_tests/lorem.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/lorem.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/lorem.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/lorem.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/macro-compilation.err.out: -------------------------------------------------------------------------------- 1 | .*Another macro with name 'test_override' already exported. -------------------------------------------------------------------------------- /pongo2/template_tests/macro-execution.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/macro-execution.err -------------------------------------------------------------------------------- /pongo2/template_tests/macro.helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/macro.helper -------------------------------------------------------------------------------- /pongo2/template_tests/macro.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/macro.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/macro.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/macro.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/macro2.helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/macro2.helper -------------------------------------------------------------------------------- /pongo2/template_tests/now.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/now.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/now.tpl.out: -------------------------------------------------------------------------------- 1 | 2 | Wed Feb 5 18:31:45 +0000 UTC 2014 -------------------------------------------------------------------------------- /pongo2/template_tests/pongo2ctx.tpl: -------------------------------------------------------------------------------- 1 | {{ pongo2.version }} -------------------------------------------------------------------------------- /pongo2/template_tests/pongo2ctx.tpl.out: -------------------------------------------------------------------------------- 1 | dev -------------------------------------------------------------------------------- /pongo2/template_tests/sandbox.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/sandbox.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/sandbox.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/sandbox.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/set.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/set.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/set.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/set.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/spaceless.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/spaceless.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/spaceless.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/spaceless.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/ssi.helper: -------------------------------------------------------------------------------- 1 | {{ number }} 2 | {{ "hello" }} -------------------------------------------------------------------------------- /pongo2/template_tests/ssi.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/ssi.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/ssi.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/ssi.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/tag_filter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/tag_filter.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/tag_filter.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/tag_filter.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/tags-compilation.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/tags-compilation.err -------------------------------------------------------------------------------- /pongo2/template_tests/template_sets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/template_sets.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/templatetag.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/templatetag.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/templatetag.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/templatetag.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/variables.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/variables.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/variables.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/variables.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/verbatim.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/verbatim.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/verbatim.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/verbatim.tpl.out -------------------------------------------------------------------------------- /pongo2/template_tests/widthratio.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/widthratio.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/widthratio.tpl.out: -------------------------------------------------------------------------------- 1 | 2 | 88 3 | 4 | 88 -------------------------------------------------------------------------------- /pongo2/template_tests/with.helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/with.helper -------------------------------------------------------------------------------- /pongo2/template_tests/with.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/with.tpl -------------------------------------------------------------------------------- /pongo2/template_tests/with.tpl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/template_tests/with.tpl.out -------------------------------------------------------------------------------- /pongo2/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/value.go -------------------------------------------------------------------------------- /pongo2/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/pongo2/variable.go -------------------------------------------------------------------------------- /render_pongo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/render_pongo2.go -------------------------------------------------------------------------------- /response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/response_writer.go -------------------------------------------------------------------------------- /samples/MultiUsage/config/__global___.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/MultiUsage/config/__global___.ini -------------------------------------------------------------------------------- /samples/MultiUsage/config/myapp_1.0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/MultiUsage/config/myapp_1.0.ini -------------------------------------------------------------------------------- /samples/MultiUsage/config/xorm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/MultiUsage/config/xorm.ini -------------------------------------------------------------------------------- /samples/MultiUsage/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/MultiUsage/main.go -------------------------------------------------------------------------------- /samples/MultiUsage/upload/henrylee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/MultiUsage/upload/henrylee.jpg -------------------------------------------------------------------------------- /samples/demo/clienttest/testclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/clienttest/testclient.go -------------------------------------------------------------------------------- /samples/demo/config/__global___.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/config/__global___.ini -------------------------------------------------------------------------------- /samples/demo/config/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/config/cert.pem -------------------------------------------------------------------------------- /samples/demo/config/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/config/key.pem -------------------------------------------------------------------------------- /samples/demo/config/myapp1_1.0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/config/myapp1_1.0.ini -------------------------------------------------------------------------------- /samples/demo/config/myapp2_1.0.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/config/myapp2_1.0.ini -------------------------------------------------------------------------------- /samples/demo/handler/body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/handler/body.go -------------------------------------------------------------------------------- /samples/demo/handler/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/handler/param.go -------------------------------------------------------------------------------- /samples/demo/handler/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/handler/proxy.go -------------------------------------------------------------------------------- /samples/demo/handler/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/handler/render.go -------------------------------------------------------------------------------- /samples/demo/handler/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/handler/websocket.go -------------------------------------------------------------------------------- /samples/demo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/main.go -------------------------------------------------------------------------------- /samples/demo/middleware/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/middleware/index.go -------------------------------------------------------------------------------- /samples/demo/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/router/router.go -------------------------------------------------------------------------------- /samples/demo/static/cross.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/cross.html -------------------------------------------------------------------------------- /samples/demo/static/jQuery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/jQuery-2.1.4.min.js -------------------------------------------------------------------------------- /samples/demo/static/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/markdown/README.md -------------------------------------------------------------------------------- /samples/demo/static/markdown/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/markdown/README.txt -------------------------------------------------------------------------------- /samples/demo/static/public/index.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /samples/demo/static/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/render.html -------------------------------------------------------------------------------- /samples/demo/static/renderfs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/renderfs/index.html -------------------------------------------------------------------------------- /samples/demo/static/renderfs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/renderfs/index.txt -------------------------------------------------------------------------------- /samples/demo/static/websocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/websocket.html -------------------------------------------------------------------------------- /samples/demo/static/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/demo/static/websocket.js -------------------------------------------------------------------------------- /samples/directsql/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/README.MD -------------------------------------------------------------------------------- /samples/directsql/common/pongo2func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/common/pongo2func.go -------------------------------------------------------------------------------- /samples/directsql/config/__global___.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/config/__global___.ini -------------------------------------------------------------------------------- /samples/directsql/config/directsql.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/config/directsql.ini -------------------------------------------------------------------------------- /samples/directsql/config/xorm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/config/xorm.ini -------------------------------------------------------------------------------- /samples/directsql/handler/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/handler/index.go -------------------------------------------------------------------------------- /samples/directsql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/main.go -------------------------------------------------------------------------------- /samples/directsql/model/demo.msql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/model/demo.msql -------------------------------------------------------------------------------- /samples/directsql/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/router/router.go -------------------------------------------------------------------------------- /samples/directsql/sys_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/sys_user.sql -------------------------------------------------------------------------------- /samples/directsql/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/view/index.html -------------------------------------------------------------------------------- /samples/directsql/view/pongo2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsql/view/pongo2.tpl -------------------------------------------------------------------------------- /samples/directsqlx/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/README.MD -------------------------------------------------------------------------------- /samples/directsqlx/common/pongo2func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/common/pongo2func.go -------------------------------------------------------------------------------- /samples/directsqlx/config/__global___.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/config/__global___.ini -------------------------------------------------------------------------------- /samples/directsqlx/config/directsql.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/config/directsql.ini -------------------------------------------------------------------------------- /samples/directsqlx/config/xorm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/config/xorm.ini -------------------------------------------------------------------------------- /samples/directsqlx/handler/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/handler/index.go -------------------------------------------------------------------------------- /samples/directsqlx/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/main.go -------------------------------------------------------------------------------- /samples/directsqlx/model/demo.msql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/model/demo.msql -------------------------------------------------------------------------------- /samples/directsqlx/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/router/router.go -------------------------------------------------------------------------------- /samples/directsqlx/sys_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/sys_user.sql -------------------------------------------------------------------------------- /samples/directsqlx/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/view/index.html -------------------------------------------------------------------------------- /samples/directsqlx/view/pongo2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/directsqlx/view/pongo2.tpl -------------------------------------------------------------------------------- /samples/myconfig/config/__global___.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/myconfig/config/__global___.ini -------------------------------------------------------------------------------- /samples/myconfig/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/samples/myconfig/main.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/server.go -------------------------------------------------------------------------------- /session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/README.md -------------------------------------------------------------------------------- /session/couchbase/sess_couchbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/couchbase/sess_couchbase.go -------------------------------------------------------------------------------- /session/ledis/ledis_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/ledis/ledis_session.go -------------------------------------------------------------------------------- /session/memcache/sess_memcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/memcache/sess_memcache.go -------------------------------------------------------------------------------- /session/mysql/sess_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/mysql/sess_mysql.go -------------------------------------------------------------------------------- /session/postgres/sess_postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/postgres/sess_postgresql.go -------------------------------------------------------------------------------- /session/redis/sess_redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/redis/sess_redis.go -------------------------------------------------------------------------------- /session/sess_cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_cookie.go -------------------------------------------------------------------------------- /session/sess_cookie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_cookie_test.go -------------------------------------------------------------------------------- /session/sess_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_file.go -------------------------------------------------------------------------------- /session/sess_mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_mem.go -------------------------------------------------------------------------------- /session/sess_mem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_mem_test.go -------------------------------------------------------------------------------- /session/sess_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_test.go -------------------------------------------------------------------------------- /session/sess_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/sess_utils.go -------------------------------------------------------------------------------- /session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/session.go -------------------------------------------------------------------------------- /session/ssdb/sess_ssdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/session/ssdb/sess_ssdb.go -------------------------------------------------------------------------------- /swagger/bindata_assetfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/swagger/bindata_assetfs.go -------------------------------------------------------------------------------- /swagger/bindata_assetfs_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/swagger/bindata_assetfs_usage.go -------------------------------------------------------------------------------- /swagger/swagger-ui.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/swagger/swagger-ui.zip -------------------------------------------------------------------------------- /swagger/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/swagger/swagger.go -------------------------------------------------------------------------------- /syso_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/syso_windows_386.go -------------------------------------------------------------------------------- /tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/tree.go -------------------------------------------------------------------------------- /tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/tree_test.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/README.md -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/currip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/currip.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/doc.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/encrypt.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/file.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/gopath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/gopath.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/gotest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/gotest.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/js_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/js_url.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/kvdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/kvdata.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/map.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/other.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/random.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/sets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/sets.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/string.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/targz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/targz.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/trace.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/goutil/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/goutil/type.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/Makefile -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/README.md -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/README_ZH.md -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/error.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/helper.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/ini.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/key.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/parser.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/section.go -------------------------------------------------------------------------------- /vendor/github.com/andeya/ini/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/andeya/ini/struct.go -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/cupcake/rdb/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/cupcake/rdb/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/cupcake/rdb/LICENCE -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/cupcake/rdb/README.md -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/cupcake/rdb/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/cupcake/rdb/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/edsrzf/mmap-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/edsrzf/mmap-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/edsrzf/mmap-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/edsrzf/mmap-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/edsrzf/mmap-go/mmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/edsrzf/mmap-go/mmap.go -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/stack/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/facebookgo/stack/license -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/stack/patents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/facebookgo/stack/patents -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/README.md -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/context.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/error.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/filters.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/helpers.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/nodes.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/options.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/parser.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/pongo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/pongo2.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/tags.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/tags_if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/tags_if.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/flosch/pongo2/value.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/garyburd/redigo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/garyburd/redigo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/golang/snappy/snappy.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/henrylee2cn/ameda/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/henrylee2cn/ameda/int.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/.gitignore: -------------------------------------------------------------------------------- 1 | documents 2 | coverage.txt 3 | _book 4 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/License -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/README.md -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/callback.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/dialect.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/field.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/interface.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/logger.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/main.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/model.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/naming.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/scope.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/search.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/test_all.sh -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/utils.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/gorm/wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jinzhu/gorm/wercker.yml -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/README.md -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/bind.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/named.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/sqlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/jmoiron/sqlx/sqlx.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/doc.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/error.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/juju/errors/path.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/pretty/License -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/pretty/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/.travis.sh -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/TESTS.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/connector.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/scram/scram.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/siddontang/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/siddontang/rdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/siddontang/rdb/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/siddontang/rdb/README.md: -------------------------------------------------------------------------------- 1 | # rdb 2 | 3 | Handling Redis RDB format. 4 | -------------------------------------------------------------------------------- /vendor/github.com/ssdb/gossdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/github.com/ssdb/gossdb/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go_import_path: gopkg.in/check.v1 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/benchmark.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/check.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/checkers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/helpers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/printer.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/reporter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/check.v1/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/check.v1/run.go -------------------------------------------------------------------------------- /vendor/gopkg.in/dgrijalva/jwt-go.v3/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/xorm.io/builder/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/.drone.yml -------------------------------------------------------------------------------- /vendor/xorm.io/builder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/LICENSE -------------------------------------------------------------------------------- /vendor/xorm.io/builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/README.md -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_delete.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_insert.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_join.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_limit.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_select.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_union.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_union.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/builder_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/builder_update.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_and.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_and.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_between.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_between.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_compare.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_eq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_eq.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_expr.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_if.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_in.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_like.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_like.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_neq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_neq.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_not.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_not.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_notin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_notin.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_null.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/cond_or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/cond_or.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/doc.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/error.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/sql.go -------------------------------------------------------------------------------- /vendor/xorm.io/builder/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/builder/writer.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/.drone.yml -------------------------------------------------------------------------------- /vendor/xorm.io/core/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | -------------------------------------------------------------------------------- /vendor/xorm.io/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/LICENSE -------------------------------------------------------------------------------- /vendor/xorm.io/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/README.md -------------------------------------------------------------------------------- /vendor/xorm.io/core/benchmark.sh: -------------------------------------------------------------------------------- 1 | go test -v -bench=. -run=XXX 2 | -------------------------------------------------------------------------------- /vendor/xorm.io/core/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/cache.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/column.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/converstion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/converstion.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/db.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/dialect.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/driver.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/error.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/filter.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/ilogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/ilogger.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/index.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/mapper.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/pk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/pk.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/rows.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/scan.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/stmt.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/table.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/tx.go -------------------------------------------------------------------------------- /vendor/xorm.io/core/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/core/type.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/.drone.yml -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/.gitignore -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/LICENSE -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/README.md -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/README_CN.md -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/cache_lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/cache_lru.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/context_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/context_cache.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/convert.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/dialect_mssql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/dialect_mssql.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/dialect_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/dialect_mysql.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/dialect_oracle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/dialect_oracle.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/dialect_postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/dialect_postgres.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/dialect_sqlite3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/dialect_sqlite3.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/doc.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/engine.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/engine_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/engine_cond.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/engine_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/engine_context.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/engine_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/engine_group.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/engine_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/engine_table.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/error.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/gen_reserved.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/gen_reserved.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/helpers.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/helpler_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/helpler_time.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/interface.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/json.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/logger.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/pg_reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/pg_reserved.txt -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/processors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/processors.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/rows.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_cols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_cols.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_cond.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_context.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_convert.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_delete.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_exist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_exist.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_find.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_get.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_insert.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_iterate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_iterate.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_query.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_raw.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_schema.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_stats.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_tx.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/session_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/session_update.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/statement.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/statement_args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/statement_args.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/statement_quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/statement_quote.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/syslogger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/syslogger.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/tag.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_mssql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/test_mssql.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_mssql_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/test_mssql_cache.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_mymysql.sh: -------------------------------------------------------------------------------- 1 | go test -db=mymysql -conn_str="xorm_test/root/" -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_mysql.sh: -------------------------------------------------------------------------------- 1 | go test -db=mysql -conn_str="root:@/xorm_test" -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_mysql_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/test_mysql_cache.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/test_postgres.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_sqlite.sh: -------------------------------------------------------------------------------- 1 | go test -db=sqlite3 -conn_str="./test.db?cache=shared&mode=rwc" -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_sqlite_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/test_sqlite_cache.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/test_tidb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/test_tidb.sh -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/transaction.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/types.go -------------------------------------------------------------------------------- /vendor/xorm.io/xorm/xorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andeya/faygo/HEAD/vendor/xorm.io/xorm/xorm.go --------------------------------------------------------------------------------