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