Removed more unnecessary files from cache
- Updated `.gitignore` - Added `README.md` file
This commit is contained in:
parent
a57ee1918e
commit
fccd30a223
10 changed files with 656 additions and 119 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue