├── .gitattributes ├── .idea ├── .gitignore ├── EIS.iml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── eis ├── eis_64 ├── go.mod ├── go.sum ├── install.sh ├── main.go ├── model └── model.go ├── service └── eip.go ├── static ├── layui.css └── result │ └── placeholder └── views └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/EIS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/.idea/EIS.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/README.md -------------------------------------------------------------------------------- /eis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/eis -------------------------------------------------------------------------------- /eis_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/eis_64 -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/go.sum -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/install.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/main.go -------------------------------------------------------------------------------- /model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/model/model.go -------------------------------------------------------------------------------- /service/eip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/service/eip.go -------------------------------------------------------------------------------- /static/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/static/layui.css -------------------------------------------------------------------------------- /static/result/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicPhoenix/EIS/HEAD/views/index.html --------------------------------------------------------------------------------