use my paste server
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
const HASTE_URL: string = "https://haste.fascinated.cc";
|
||||
const HASTE_URL: string = "https://paste.fascinated.cc";
|
||||
|
||||
/**
|
||||
* Creates a new haste with the given content.
|
||||
@ -7,11 +7,11 @@ const HASTE_URL: string = "https://haste.fascinated.cc";
|
||||
* @returns the URL of the created haste
|
||||
*/
|
||||
export async function createHaste(content: string): Promise<string> {
|
||||
const response = await fetch(`${HASTE_URL}/documents`, {
|
||||
const response = await fetch(`${HASTE_URL}/api/upload`, {
|
||||
method: "POST",
|
||||
body: content,
|
||||
});
|
||||
|
||||
const { key } = await response.json();
|
||||
return `${HASTE_URL}/${key}`;
|
||||
const { id } = await response.json();
|
||||
return `${HASTE_URL}/${id}`;
|
||||
}
|
||||
|
Reference in New Issue
Block a user