This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch master-model
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master-model by this push:
new 2d85c4d WIP.
2d85c4d is described below
commit 2d85c4d2cd54b9a7bf2dfcd3c206a6f4957b745d
Author: Sergey Kamov <[email protected]>
AuthorDate: Fri Oct 8 09:48:47 2021 +0300
WIP.
---
.../apache/nlpcraft/model/builders/NCResultBuilder.java | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/builders/NCResultBuilder.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/builders/NCResultBuilder.java
new file mode 100644
index 0000000..4bda83d
--- /dev/null
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/builders/NCResultBuilder.java
@@ -0,0 +1,14 @@
+package org.apache.nlpcraft.model.builders;
+
+import org.apache.nlpcraft.model.NCResult;
+
+public class NCResultBuilder {
+ // TODO: implement it.
+ public NCResultBuilder withBody(Object o) {
+ return null;
+ }
+
+ public NCResult getResult() {
+ return null;
+ }
+}