We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f6aa2 commit 209e404Copy full SHA for 209e404
README.md
@@ -14,7 +14,6 @@ they were sets.
14
### Maven
15
16
```xml
17
-
18
<dependency>
19
<groupId>com.regexsolver.api</groupId>
20
<artifactId>RegexSolver</artifactId>
@@ -33,6 +32,12 @@ implementation "com.regexsolver.api:RegexSolver:1.0.1"
33
32
In order to use the library you need to generate an API Token on our [Developer Console](https://regexsolver.com/).
34
35
```java
+import com.regexsolver.api.RegexSolver;
36
+import com.regexsolver.api.Term;
37
+import com.regexsolver.api.exception.ApiError;
38
+
39
+import java.io.IOException;
40
41
public class Main {
42
public static void main(String[] args) throws IOException, ApiError {
43
RegexSolver.initialize(/* Your API token here -> */"");
0 commit comments