// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#include "NodeApi.h"

namespace Microsoft::NodeApiJsi {

LibHandle LibLoader::loadLib(const char *libName) {
  // TODO: implement
}

FuncPtr LibLoader::getFuncPtr(LibHandle libHandle, const char *funcName) {
  // TODO: implement
}

} // namespace Microsoft::NodeApiJsi
