Skip to content

Instantly share code, notes, and snippets.

View Guf-Hub's full-sized avatar
😃

Mikhail Nosaev Guf-Hub

😃
View GitHub Profile
@Guf-Hub
Guf-Hub / index.gs
Last active July 8, 2023 07:16
Сохранение лога юзера в телеграм боте в PropertiesService
class UsersProperties {
constructor(property) {
this.property = property || "users";
this.service = PropertiesService.getScriptProperties();
}
get() {
return JSON.parse(this.service.getProperty(this.property));
}