X Tutup
/* * Copyright (c) 2019, Mathias Küsel * MIT License */ #include #include namespace node_snap7 { NAN_MODULE_INIT(InitAll) { S7Client::Init(target); S7Server::Init(target); } NODE_MODULE(node_snap7, InitAll) } // namespace node_snap7
X Tutup