Nodemcu and bluetooth module, and relay

Hello, can I insert Bluetooth code here? Thanks

#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>



char auth[] = "xxxxx";
char ssid[] = "xxxxx";
char pass[] = "xxxx";

void setup()
{
  // Debug console
  Serial.begin(9600);

  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

@Cjjjjjjj please edit your post (using the pencil icon at the bottom) and add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

I already edited my post sir