#ifndef TENSOR_OPS_SUM_H
#define TENSOR_OPS_SUM_H

#include <napi.h>

// Forward declaration
class Tensor;

namespace TensorOps {
  Napi::Value Sum(Tensor* self, const Napi::CallbackInfo& info);
}

#endif
