mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
14 lines
189 B
Markdown
14 lines
189 B
Markdown
# The Unleash Client 4 Java
|
|
|
|
## Awesome API
|
|
|
|
It is really simple to use unleash.
|
|
|
|
```java
|
|
if(unleash.isEnabled("AwesomeFeature")) {
|
|
//do some magic
|
|
} else {
|
|
//do old boring stuff
|
|
}
|
|
```
|