https://github.com/hacimertgokhan/naulis
Basit ve kullanışlı lisans kütüphanesi.
https://github.com/hacimertgokhan/naulis
Last synced: 9 months ago
JSON representation
Basit ve kullanışlı lisans kütüphanesi.
- Host: GitHub
- URL: https://github.com/hacimertgokhan/naulis
- Owner: hacimertgokhan
- License: apache-2.0
- Created: 2024-12-23T03:06:53.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-12-23T03:17:06.000Z (11 months ago)
- Last Synced: 2024-12-23T04:19:52.545Z (11 months ago)
- Language: Java
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Naulis Kütüphanesi
**Naulis**, lisans yönetim sistemiyle etkileşim için basit bir Java kütüphanesidir. HTTP POST istekleri gönderir, TOML formatından yapılandırma okur ve JSON yanıtlarını işler.
## Özellikler
- E-posta ve lisans anahtarıyla API'ye bağlanır.
- TOML yapılandırma dosyasından `url_get` bilgisi alır.
- JSON yanıtlarını düzenli olarak yazdırır.
### TOML Dosyası
`licenses.toml` oluşturun:
```toml
[url]
url_get = "https://your-api-endpoint.com"
```
### Örnek Kullanım
```java
Main.loadToml();
Request request = new Request("email@example.com", "your-license-key");
System.out.println(request.getData());
```