blob: a46d68edd46d57eed411f71638b3b65624117cd1 (
plain)
1
2
3
4
5
6
7
8
9
|
import { setAOhost } from "../../client/aoHost";
/**
* new asset url!!
* @param {Array} args packet arguments
*/
export const handleASS = (args: string[]) => {
if (args[1] !== "None") setAOhost(args[1]);
};
|