com.vesoft.nebula.tools.importer.utils.KafkaUtils.scala Maven / Gradle / Ivy
The newest version!
/* Copyright (c) 2020 vesoft inc. All rights reserved.
*
* This source code is licensed under Apache 2.0 License,
* attached with Common Clause Condition 1.0, found in the LICENSES directory.
*/
package com.vesoft.nebula.tools.importer.utils
import com.vesoft.nebula.tools.importer.{Edge, Vertex}
object KafkaUtils {
def writeVertices(vertices: Vertex*): Unit = {}
def writeEdge(edges: Edge*): Unit = {}
}