├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── cmd └── servant │ └── servant.go ├── conf └── servant.xml ├── example ├── example.xml └── timer.xml ├── go.mod ├── pkg ├── conf │ ├── config.dtd │ ├── config.go │ ├── version.go │ ├── xml.go │ └── xml_test.go └── server │ ├── auth.go │ ├── auth_test.go │ ├── command.go │ ├── command_test.go │ ├── file.go │ ├── file_test.go │ ├── lock.go │ ├── lock_test.go │ ├── log.go │ ├── log_test.go │ ├── server.go │ ├── server_test.go │ ├── sql.go │ ├── sql_test.go │ ├── task.go │ ├── var.go │ └── var_test.go ├── scripts └── servantctl └── servant.spec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | version=0.19.0 2 | release=7 3 | 4 | -------------------------------------------------------------------------------- /cmd/servant/servant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/cmd/servant/servant.go -------------------------------------------------------------------------------- /conf/servant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/conf/servant.xml -------------------------------------------------------------------------------- /example/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/example/example.xml -------------------------------------------------------------------------------- /example/timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/example/timer.xml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/go.mod -------------------------------------------------------------------------------- /pkg/conf/config.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/conf/config.dtd -------------------------------------------------------------------------------- /pkg/conf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/conf/config.go -------------------------------------------------------------------------------- /pkg/conf/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/conf/version.go -------------------------------------------------------------------------------- /pkg/conf/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/conf/xml.go -------------------------------------------------------------------------------- /pkg/conf/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/conf/xml_test.go -------------------------------------------------------------------------------- /pkg/server/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/auth.go -------------------------------------------------------------------------------- /pkg/server/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/auth_test.go -------------------------------------------------------------------------------- /pkg/server/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/command.go -------------------------------------------------------------------------------- /pkg/server/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/command_test.go -------------------------------------------------------------------------------- /pkg/server/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/file.go -------------------------------------------------------------------------------- /pkg/server/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/file_test.go -------------------------------------------------------------------------------- /pkg/server/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/lock.go -------------------------------------------------------------------------------- /pkg/server/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/lock_test.go -------------------------------------------------------------------------------- /pkg/server/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/log.go -------------------------------------------------------------------------------- /pkg/server/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/log_test.go -------------------------------------------------------------------------------- /pkg/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/server.go -------------------------------------------------------------------------------- /pkg/server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/server_test.go -------------------------------------------------------------------------------- /pkg/server/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/sql.go -------------------------------------------------------------------------------- /pkg/server/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/sql_test.go -------------------------------------------------------------------------------- /pkg/server/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/task.go -------------------------------------------------------------------------------- /pkg/server/var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/var.go -------------------------------------------------------------------------------- /pkg/server/var_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/pkg/server/var_test.go -------------------------------------------------------------------------------- /scripts/servantctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/scripts/servantctl -------------------------------------------------------------------------------- /servant.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiezhenye/servant/HEAD/servant.spec --------------------------------------------------------------------------------