csvpp 0.5.1

Compile csv++ source code to a target spreadsheet format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::super::CompilationTarget;
use super::GoogleSheets;
use crate::{Module, Result};

impl CompilationTarget for GoogleSheets<'_> {
    fn write_backup(&self) -> Result<()> {
        // TODO note to myself: you use a drive client to do this, not a sheets client
        todo!();
    }

    fn write(&self, module: &Module) -> Result<()> {
        self.async_compiler
            .block_on(async { self.write_sheet(module).await })
    }
}