Step one: Close cold turkey app and the minitray icon of coldTurkey
Create a file called ColdTurkeyBlockerPremium.py
then open CMD to this dir.
import json
import sqlite3
import os
// Types for the result object with discriminated union | |
type Success<T> = { | |
data: T; | |
error: null; | |
}; | |
type Failure<E> = { | |
data: null; | |
error: E; | |
}; |