gitextract_my193frc/ ├── .fsw.yml ├── .github/ │ └── stale.yml ├── .gitignore ├── .goreleaser.yml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── assets/ │ ├── bootstrap-tabs.css │ ├── common.js │ ├── libs/ │ │ ├── jquery-tiny-pubsub.js │ │ └── notify.js │ ├── logcat.css │ ├── remote.css │ ├── remote.js │ ├── style.css │ └── vue-components.js ├── database.go ├── database_test.go ├── docker-compose.yml ├── go.mod ├── go.sum ├── heartbeat/ │ └── heartbeat.go ├── hostsmanager.go ├── httplog.go ├── httpserver.go ├── main.go ├── proto/ │ └── message.go ├── rethinkdb-test/ │ └── main.go ├── scripts/ │ ├── img2video/ │ │ ├── main.py │ │ ├── requirements.txt │ │ ├── static/ │ │ │ ├── .gitkeep │ │ │ └── videos/ │ │ │ └── .gitkeep │ │ └── templates/ │ │ ├── index.html │ │ └── videos.html │ ├── levenshtein.py │ └── update_coverage_umeng.py ├── templates/ │ ├── edit.html │ ├── index.html │ ├── property.html │ ├── providers.html │ └── remote.html └── utils.go