This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
namespace PgWire; | |
class PgBuffer | |
{ | |
// private NetworkStream _stream; | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HOST = '' | |
headers = { | |
'Accept': "application/json", | |
'Content-Type': "application/json", | |
'Authorization': f'Bearer {get_token()}' | |
} | |
# Just runs Export atm | |
def main(command: str, directory: str): | |
"Runs outline export and either downloads the zip (default) or extracts it to dir" |
OlderNewer