lilicore 0.0.1

Core library for Lili, the AI assistant for developers
Documentation
1
2
3
4
5
6
use crate::configjson;

pub fn get_access_token() -> Option<String> {
    let access_token = configjson::get("access_token");
    access_token
}