| 1930 | } |
| 1931 | |
| 1932 | Status Server::FunctionSetLib(const std::string &func, const std::string &lib) const { |
| 1933 | std::string func_name = engine::kLuaFuncLibPrefix + func; |
| 1934 | engine::Context ctx(storage); |
| 1935 | return storage->WriteToPropagateCF(ctx, func_name, lib); |
| 1936 | } |
| 1937 | |
| 1938 | void Server::ScriptReset() { |
| 1939 | for (auto &wt : worker_threads_) { |
no test coverage detected