Removed more unnecessary files from cache

- Updated `.gitignore`
- Added `README.md` file
This commit is contained in:
David Allen 2023-05-29 21:16:50 -06:00
parent a57ee1918e
commit fccd30a223
10 changed files with 656 additions and 119 deletions

View file

@ -2,15 +2,15 @@
using System.IO;
using System.Diagnostics;
using System.Net.Http.Headers;
using System.Reflection;
namespace QrScanner{
class Program{
static async Task<int> run_scan(){
string path = Path.Combine(Environment.CurrentDirectory, "client/qr_scan2.py");
Process p = new Process();
p.StartInfo = new ProcessStartInfo("/usr/bin/bpython", "client/qr_scan2.py")
p.StartInfo = new ProcessStartInfo("/usr/bin/bpython", path)
{
RedirectStandardOutput = true,
UseShellExecute = false,