From 2f856bcaf40a97957ead1f0ca6333ea5fff97439 Mon Sep 17 00:00:00 2001 From: Kseniia Nikitina Date: Sat, 17 Aug 2024 17:49:44 +0200 Subject: [PATCH] Update issue templates (#12) --- .../question-about-source-code.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/question-about-source-code.md diff --git a/.github/ISSUE_TEMPLATE/question-about-source-code.md b/.github/ISSUE_TEMPLATE/question-about-source-code.md new file mode 100644 index 0000000..3553143 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question-about-source-code.md @@ -0,0 +1,25 @@ +--- +name: Question about source code +about: Ask a question about source code here +title: "[QUESTION]: " +labels: question +assignees: ksenia312 + +--- + +### Question +Provide your question here + +### Source Code Path +Specify the path to the source code you are referring to. (e.g., `lib/src/platforms/android/nearby_android_service.dart`) + +### Code Snippet +Include a code snippet from the source code in question. Ensure to provide enough context to understand the issue. + +```dart +// Example source code snippet + @override + FutureOr send(OutgoingNearbyMessage message) { + return _socketService.send(message); + } +```