UNPKG

difflytic

Version:

AI-powered code review for GitLab/GitHub MRs using OpenAI and more.

17 lines (16 loc) 377 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PrivacyManager = void 0; class PrivacyManager { constructor() { this.optIn = false; } setOptIn(optIn) { this.optIn = optIn; } isOptedIn() { return this.optIn; } } exports.PrivacyManager = PrivacyManager; exports.default = new PrivacyManager();